Searched refs:X509Name (Results 1 - 5 of 5) sorted by relevance
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
H A D | mod.rs | 1045 /// A builder used to construct an `X509Name`. 1046 pub struct X509NameBuilder(X509Name); 1053 cvt_p(ffi::X509_NAME_new()).map(|p| X509NameBuilder(X509Name(p))) in new() 1168 /// Return an `X509Name`. 1169 pub fn build(self) -> X509Name { in build() 1173 X509Name::from_der(&self.0.to_der().unwrap()).unwrap() in build() 1182 pub struct X509Name; structure names 1183 /// Reference to `X509Name`. 1187 impl X509Name { impls 1196 pub fn load_client_ca_file<P: AsRef<Path>>(file: P) -> Result<Stack<X509Name>, ErrorStac [all...] |
H A D | tests.rs | 28 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/ |
H A D | pkcs12.rs | 293 use crate::x509::{X509Name, X509}; 338 let mut name = X509Name::builder().unwrap(); in create()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | mod.rs | 80 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() 3282 pub fn set_client_ca_list(&mut self, list: Stack<X509Name>) { in set_client_ca_list()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | mod.rs | 39 use crate::x509::{X509Name, X509StoreContext, X509VerifyResult, X509}; 900 let names = X509Name::load_client_ca_file("test/root-ca.pem").unwrap(); in client_ca_list()
|
Completed in 12 milliseconds