pub struct X509NameRef(/* private fields */);Expand description
Reference to X509Name.
Implementations§
Source§impl X509NameRef
impl X509NameRef
Sourcepub fn entries_by_nid(&self, nid: Nid) -> X509NameEntries<'_> ⓘ
pub fn entries_by_nid(&self, nid: Nid) -> X509NameEntries<'_> ⓘ
Returns the name entries by the nid.
Sourcepub fn entries(&self) -> X509NameEntries<'_> ⓘ
pub fn entries(&self) -> X509NameEntries<'_> ⓘ
Returns an iterator over all X509NameEntry values
Sourcepub fn try_cmp(&self, other: &X509NameRef) -> Result<Ordering, ErrorStack>
pub fn try_cmp(&self, other: &X509NameRef) -> Result<Ordering, ErrorStack>
Compare two names, like Ord but it may fail.
With OpenSSL versions from 3.0.0 this may return an error if the underlying X509_NAME_cmp
call fails.
For OpenSSL versions before 3.0.0 it will never return an error, but due to a bug it may
spuriously return Ordering::Less if the X509_NAME_cmp call fails.
This corresponds to X509_NAME_cmp.
Sourcepub fn to_owned(&self) -> Result<X509Name, ErrorStack>
pub fn to_owned(&self) -> Result<X509Name, ErrorStack>
Copies the name to a new X509Name.
This corresponds to X509_NAME_dup.
Sourcepub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>
pub fn to_der(&self) -> Result<Vec<u8>, ErrorStack>
Serializes the certificate into a DER-encoded X509 name structure.
This corresponds to i2d_X509_NAME.
Sourcepub fn digest(
&self,
hash_type: MessageDigest,
) -> Result<DigestBytes, ErrorStack>
pub fn digest( &self, hash_type: MessageDigest, ) -> Result<DigestBytes, ErrorStack>
Returns a digest of the DER representation of this ‘X509Name’.
This corresponds to X509_NAME_digest.
Trait Implementations§
Source§impl AsRef<X509NameRef> for X509Name
impl AsRef<X509NameRef> for X509Name
Source§fn as_ref(&self) -> &X509NameRef
fn as_ref(&self) -> &X509NameRef
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Borrow<X509NameRef> for X509Name
impl Borrow<X509NameRef> for X509Name
Source§fn borrow(&self) -> &X509NameRef
fn borrow(&self) -> &X509NameRef
Immutably borrows from an owned value. Read more