[][src]Struct picky::x509::csr::Csr

pub struct Csr(_);

Certificate Signing Request

Methods

impl Csr[src]

pub fn from_der<T: ?Sized + AsRef<[u8]>>(der: &T) -> Result<Self, CsrError>[src]

pub fn from_pem(pem: &Pem) -> Result<Self, CsrError>[src]

pub fn to_der(&self) -> Result<Vec<u8>, CsrError>[src]

pub fn to_pem(&self) -> Result<Pem<'static>, CsrError>[src]

pub fn generate(
    subject: DirectoryName,
    private_key: &PrivateKey,
    signature_hash_type: SignatureHashType
) -> Result<Self, CsrError>
[src]

pub fn subject_name(&self) -> DirectoryName[src]

pub fn public_key(&self) -> &PublicKey[src]

pub fn into_subject_infos(self) -> (DirectoryName, PublicKey)[src]

pub fn verify(&self) -> Result<(), CsrError>[src]

Trait Implementations

impl Clone for Csr[src]

impl Debug for Csr[src]

impl PartialEq<Csr> for Csr[src]

impl StructuralPartialEq for Csr[src]

Auto Trait Implementations

impl RefUnwindSafe for Csr

impl Send for Csr

impl Sync for Csr

impl Unpin for Csr

impl UnwindSafe for Csr

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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,