Home
last modified time | relevance | path

Searched refs:Asn1Type (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/
Dasn1.rs90 pub struct Asn1Type(c_int); struct
93 impl Asn1Type { implementation
94 pub const EOC: Asn1Type = Asn1Type(ffi::V_ASN1_EOC);
96 pub const BOOLEAN: Asn1Type = Asn1Type(ffi::V_ASN1_BOOLEAN);
98 pub const INTEGER: Asn1Type = Asn1Type(ffi::V_ASN1_INTEGER);
100 pub const BIT_STRING: Asn1Type = Asn1Type(ffi::V_ASN1_BIT_STRING);
102 pub const OCTET_STRING: Asn1Type = Asn1Type(ffi::V_ASN1_OCTET_STRING);
104 pub const NULL: Asn1Type = Asn1Type(ffi::V_ASN1_NULL);
106 pub const OBJECT: Asn1Type = Asn1Type(ffi::V_ASN1_OBJECT);
108 pub const OBJECT_DESCRIPTOR: Asn1Type = Asn1Type(ffi::V_ASN1_OBJECT_DESCRIPTOR);
[all …]
/third_party/rust/crates/rust-openssl/openssl/src/x509/
Dmod.rs28 Asn1OctetStringRef, Asn1StringRef, Asn1TimeRef, Asn1Type,
1103 ty: Asn1Type, in append_entry_by_text_with_type() argument
1151 ty: Asn1Type, in append_entry_by_nid_with_type() argument
1993 asn1_type: Asn1Type, in new() argument
2015 unsafe { GeneralName::new(ffi::GEN_EMAIL, Asn1Type::IA5STRING, email) } in new_email()
2019 unsafe { GeneralName::new(ffi::GEN_DNS, Asn1Type::IA5STRING, dns) } in new_dns()
2023 unsafe { GeneralName::new(ffi::GEN_URI, Asn1Type::IA5STRING, uri) } in new_uri()
2029 GeneralName::new(ffi::GEN_IPADD, Asn1Type::OCTET_STRING, &addr.octets()) in new_ip()
2032 GeneralName::new(ffi::GEN_IPADD, Asn1Type::OCTET_STRING, &addr.octets()) in new_ip()
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md273 * Added `Asn1Type`.