/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
D | mod.rs | 130 cert: &X509Ref, in init() argument 182 pub fn current_cert(&self) -> Option<&X509Ref> { in current_cert() argument 185 X509Ref::from_const_ptr_opt(ptr) in current_cert() 316 issuer: Option<&'a X509Ref>, in x509v3_context() argument 383 pub struct X509Ref; 391 impl X509Ref { impl 616 pub fn issued(&self, subject: &X509Ref) -> X509VerifyResult { in issued() 681 impl ToOwned for X509Ref { implementation 692 impl Ord for X509Ref { implementation 701 impl PartialOrd for X509Ref { implementation [all …]
|
/third_party/rust/crates/rust-openssl/openssl/ |
D | CHANGELOG.md | 51 * Added `X509Ref::subject_key_id`, `X509Ref::authority_key_id`, `X509Ref::authority_issuer`, and `X… 83 * Added `X509Ref::crl_distribution_points`, and `DistPoint`. 188 * Implemented `Ord` and `Eq` for `X509` and `X509Ref`. 214 * Added `X509Ref::issuer_name_hash`. 216 * Added `X509Ref::to_text`. 280 * Added `X509Ref::authority_info` and `AccessDescription::{method, location}`. 316 * Added `X509Ref::subject_name_hash` and `X509Ref::version`. 455 * Added `X509Ref::verify` and `X509ReqRef::verify`. 580 * Added `X509Ref::digest` to replace `X509Ref::fingerprint`. 585 * `X509Ref::fingerprint` has been deprecated in favor of `X509Ref::digest`. [all …]
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | ocsp.rs | 13 use crate::x509::{X509Ref, X509}; 225 subject: &X509Ref, in from_cert() argument 226 issuer: &X509Ref, in from_cert() argument
|
D | pkcs12.rs | 15 use crate::x509::{X509Ref, X509}; 157 pub fn cert(&mut self, cert: &X509Ref) -> &mut Self { in cert() 213 cert: &X509Ref, in build() argument
|
D | pkcs7.rs | 13 use crate::x509::{X509Ref, X509}; 128 signcert: &X509Ref, in sign() argument 194 cert: &X509Ref, in decrypt() argument
|
D | cms.rs | 18 use crate::x509::{store::X509StoreRef, X509Ref, X509}; 173 signcert: Option<&X509Ref>, in sign() argument
|
/third_party/rust/crates/rust-openssl/openssl/examples/ |
D | mk_certs.rs | 16 use openssl::x509::{X509NameBuilder, X509Ref, X509Req, X509ReqBuilder, X509VerifyResult, X509}; 85 ca_cert: &X509Ref, in mk_ca_signed_cert() argument
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | callbacks.rs | 34 use crate::x509::X509Ref; 567 F: Fn(&mut SslRef, ExtensionContext, Option<(usize, &X509Ref)>) -> Result<Option<T>, SslAlert> in raw_custom_ext_add() 581 Some((chainidx, X509Ref::from_ptr(x))) in raw_custom_ext_add() 645 F: Fn(&mut SslRef, ExtensionContext, &[u8], Option<(usize, &X509Ref)>) -> Result<(), SslAlert> in raw_custom_ext_parse() 659 Some((chainidx, X509Ref::from_ptr(x))) in raw_custom_ext_parse()
|
D | mod.rs | 80 use crate::x509::{X509Name, X509Ref, X509StoreContextRef, X509VerifyResult, X509}; 940 pub fn add_client_ca(&mut self, cacert: &X509Ref) -> Result<(), ErrorStack> { in add_client_ca() 1011 pub fn set_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> { in set_certificate() 1590 Option<(usize, &X509Ref)>, in add_custom_ext() argument 1600 Option<(usize, &X509Ref)>, in add_custom_ext() 1804 pub fn certificate(&self) -> Option<&X509Ref> { in certificate() argument 1807 X509Ref::from_const_ptr_opt(ptr) in certificate() 2549 pub fn certificate(&self) -> Option<&X509Ref> { in certificate() argument 2552 X509Ref::from_const_ptr_opt(ptr) in certificate() 3242 pub fn set_certificate(&mut self, cert: &X509Ref) -> Result<(), ErrorStack> { in set_certificate() [all …]
|
D | connector.rs | 426 GeneralName, X509NameRef, X509Ref, X509StoreContext, X509StoreContextRef, 461 fn verify_hostname(domain: &str, cert: &X509Ref) -> bool {
|