Struct openssl::x509::X509NameBuilder
source · pub struct X509NameBuilder(_);
Expand description
A builder used to construct an X509Name
.
Implementations§
source§impl X509NameBuilder
impl X509NameBuilder
sourcepub fn new() -> Result<X509NameBuilder, ErrorStack>
pub fn new() -> Result<X509NameBuilder, ErrorStack>
Creates a new builder.
sourcepub fn append_entry(&mut self, ne: &X509NameEntryRef) -> Result<(), ErrorStack>
pub fn append_entry(&mut self, ne: &X509NameEntryRef) -> Result<(), ErrorStack>
Add a name entry
This corresponds to X509_NAME_add_entry
.
sourcepub fn append_entry_by_text(
&mut self,
field: &str,
value: &str
) -> Result<(), ErrorStack>
pub fn append_entry_by_text( &mut self, field: &str, value: &str ) -> Result<(), ErrorStack>
Add a field entry by str.
This corresponds to X509_NAME_add_entry_by_txt
.
sourcepub fn append_entry_by_text_with_type(
&mut self,
field: &str,
value: &str,
ty: Asn1Type
) -> Result<(), ErrorStack>
pub fn append_entry_by_text_with_type( &mut self, field: &str, value: &str, ty: Asn1Type ) -> Result<(), ErrorStack>
Add a field entry by str with a specific type.
This corresponds to X509_NAME_add_entry_by_txt
.
sourcepub fn append_entry_by_nid(
&mut self,
field: Nid,
value: &str
) -> Result<(), ErrorStack>
pub fn append_entry_by_nid( &mut self, field: Nid, value: &str ) -> Result<(), ErrorStack>
Add a field entry by NID.
This corresponds to X509_NAME_add_entry_by_NID
.
sourcepub fn append_entry_by_nid_with_type(
&mut self,
field: Nid,
value: &str,
ty: Asn1Type
) -> Result<(), ErrorStack>
pub fn append_entry_by_nid_with_type( &mut self, field: Nid, value: &str, ty: Asn1Type ) -> Result<(), ErrorStack>
Add a field entry by NID with a specific type.
This corresponds to X509_NAME_add_entry_by_NID
.