[][src]Struct krill::commons::remote::builder::IdCertBuilder

pub struct IdCertBuilder;

An IdCertBuilder to be used with the Signer trait.

Implementations

impl IdCertBuilder[src]

pub fn new_ta_id_cert<S: Signer>(
    issuing_key: &S::KeyId,
    signer: &S
) -> Result<IdCert, Error<S::Error>>
[src]

Creates a new TA IdCertSignRequest to be used with the Signer trait.

Essentially this all the content that goes into the SignedData component.

pub fn new_ee_cert<S: Signer>(
    issuing_key: &S::KeyId,
    subject_key: &PublicKey,
    signer: &S
) -> Result<IdCert, Error<S::Error>>
[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.