Home
last modified time | relevance | path

Searched refs:X509Name (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/x509/
Dmod.rs1046 pub struct X509NameBuilder(X509Name);
1053 cvt_p(ffi::X509_NAME_new()).map(|p| X509NameBuilder(X509Name(p))) in new()
1169 pub fn build(self) -> X509Name { in build() argument
1173 X509Name::from_der(&self.0.to_der().unwrap()).unwrap() in build()
1182 pub struct X509Name;
1187 impl X509Name { implementation
1196 pub fn load_client_ca_file<P: AsRef<Path>>(file: P) -> Result<Stack<X509Name>, ErrorStack> { in load_client_ca_file() argument
1208 X509Name,
1213 impl Stackable for X509Name { implementation
1254 pub fn to_owned(&self) -> Result<X509Name, ErrorStack> { in to_owned() argument
[all …]
Dtests.rs28 CrlStatus, X509Crl, X509Extension, X509Name, X509Req, X509StoreContext, X509VerifyResult, X509,
290 let mut name = X509Name::builder().unwrap(); in x509_builder()
433 let mut name = X509Name::builder().unwrap(); in x509_req_builder()
755 X509Name::from_der(SUBJECT_DER).unwrap(); in test_load_subject_der()
1054 let mut names = X509Name::builder().unwrap(); in test_add_name_entry()
/third_party/rust/crates/rust-openssl/openssl/src/
Dpkcs12.rs293 use crate::x509::{X509Name, X509};
338 let mut name = X509Name::builder().unwrap(); in create()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs39 use crate::x509::{X509Name, X509StoreContext, X509VerifyResult, X509};
900 let names = X509Name::load_client_ca_file("test/root-ca.pem").unwrap(); in client_ca_list()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs80 use crate::x509::{X509Name, X509Ref, X509StoreContextRef, X509VerifyResult, X509};
930 pub fn set_client_ca_list(&mut self, list: Stack<X509Name>) { in set_client_ca_list() argument
3282 pub fn set_client_ca_list(&mut self, list: Stack<X509Name>) { in set_client_ca_list() argument
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md92 * Fixed a data-race with `x509::X509Name` that are created with `x509::X509NameBuilder` and then us…
233 * Added `X509Name::from_der` and `X509NameRef::to_der`.