[][src]Struct yubihsm::connector::http::HttpConnector

pub struct HttpConnector(_);

Connect to the HSM via HTTP(S) using yubihsm-connector.

HttpConnector is available when the http cargo feature is enabled. The feature is presently enabled-by-default.

yubihsm-connector service is a small HTTP(S) service included in the Yubico SDK which exposes an HSM to a network, allowing several clients to use it concurrently.

For more information on yubihsm-connector, see:

https://developers.yubico.com/YubiHSM2/Component_Reference/yubihsm-connector/

Methods

impl HttpConnector[src]

pub fn create(config: &HttpConfig) -> Result<Self, ConnectionError>[src]

Create a new HttpConnector with the given configuration

pub fn status(&self) -> Result<ConnectorStatus, ConnectionError>[src]

GET /connector/status returning ConnectorStatus

Trait Implementations

impl Connector for HttpConnector[src]

fn box_clone(&self) -> Box<dyn Connector>[src]

Create a clone of this connector as a boxed trait object

fn connect(&self) -> Result<Box<dyn Connection>, ConnectionError>[src]

Open a connection to yubihsm-connector

fn healthcheck(&self) -> Result<(), ConnectionError>[src]

Check that yubihsm-connector is available and returning status OK

fn serial_number(&self) -> Result<SerialNumber, ConnectionError>[src]

Get the serial number for the current YubiHSM2 (if available)

impl Default for HttpConnector[src]

impl Clone for HttpConnector[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Into<Box<dyn Connector + 'static>> for HttpConnector[src]

impl Debug for HttpConnector[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self