/external/rust/crates/x509-cert/src/ |
D | name.rs | 25 pub struct RdnSequence<'a>(pub Vec<RelativeDistinguishedName<'a>>); 35 .map(RelativeDistinguishedName::encode_from_string) in encode_from_string() 40 out.push(RelativeDistinguishedName::from_der(der)?); in encode_from_string() 63 impl_newtype!(RdnSequence<'a>, Vec<RelativeDistinguishedName<'a>>); 128 pub struct RelativeDistinguishedName<'a>(pub SetOfVec<AttributeTypeAndValue<'a>>); struct 130 impl RelativeDistinguishedName<'_> { implementation 146 RelativeDistinguishedName(atvs.try_into()?).to_vec() in encode_from_string() 153 impl fmt::Display for RelativeDistinguishedName<'_> { implementation 167 RelativeDistinguishedName<'a>,
|
/external/rust/crates/x509-parser/src/ |
D | x509.rs | 189 pub struct RelativeDistinguishedName<'a> { struct 193 impl<'a> RelativeDistinguishedName<'a> { implementation 197 RelativeDistinguishedName { set } in new() 206 impl<'a> FromIterator<AttributeTypeAndValue<'a>> for RelativeDistinguishedName<'a> { implementation 209 RelativeDistinguishedName { set } in from_iter() 213 impl<'a> FromDer<'a> for RelativeDistinguishedName<'a> { implementation 217 let rdn = RelativeDistinguishedName { set }; in from_der() 302 pub(crate) rdn_seq: Vec<RelativeDistinguishedName<'a>>, 318 pub const fn new(rdn_seq: Vec<RelativeDistinguishedName<'a>>, raw: &'a [u8]) -> Self { in new() 336 pub fn iter(&self) -> impl Iterator<Item = &RelativeDistinguishedName<'a>> { in iter() [all …]
|
D | extensions.rs | 6 use crate::x509::{ReasonCode, RelativeDistinguishedName, X509Name}; 692 NameRelativeToCRLIssuer(RelativeDistinguishedName<'a>), 1158 let (rem, rdn) = RelativeDistinguishedName::from_der(rem) in parse_distributionpointname()
|
/external/rust/crates/x509-cert/tests/ |
D | name.rs | 8 use x509_cert::name::{Name, RdnSequence, RelativeDistinguishedName}; 71 RelativeDistinguishedName::from_der(&hex!("310B3009060355040613025553")[..]).unwrap(); in decode_rdn() 94 let rdn2a = RelativeDistinguishedName::from_der( in decode_rdn() 115 let mut from_scratch = RelativeDistinguishedName::default(); in decode_rdn() 124 let mut from_scratch2 = RelativeDistinguishedName::default(); in decode_rdn() 130 assert!(RelativeDistinguishedName::from_der( in decode_rdn() 311 brdns.0.push(RelativeDistinguishedName::from(sofv)); in rdns_serde()
|
/external/cronet/net/cert/pki/ |
D | parse_name.h | 113 typedef std::vector<X509NameAttribute> RelativeDistinguishedName; typedef 114 typedef std::vector<RelativeDistinguishedName> RDNSequence; 139 RelativeDistinguishedName* out);
|
D | parse_name.cc | 149 bool ReadRdn(der::Parser* parser, RelativeDistinguishedName* out) { in ReadRdn() 192 RelativeDistinguishedName type_and_values; in ParseNameValue() 205 RelativeDistinguishedName rdn = rdn_sequence[size - i - 1]; in ConvertToRFC2253()
|
D | verify_name_match.cc | 196 RelativeDistinguishedName a_type_and_values, b_type_and_values; in VerifyRdnMatch() 319 RelativeDistinguishedName type_and_values; in NormalizeName() 399 RelativeDistinguishedName type_and_values; in NameContainsEmailAddress()
|
/external/rust/crates/x509-cert/src/ext/pkix/name/ |
D | dp.rs | 2 use crate::name::RelativeDistinguishedName; 23 NameRelativeToCRLIssuer(RelativeDistinguishedName<'a>),
|
/external/python/cryptography/src/cryptography/x509/ |
D | name.py | 143 class RelativeDistinguishedName(object): class 171 if not isinstance(other, RelativeDistinguishedName): 197 RelativeDistinguishedName([x]) for x in attributes 199 elif all(isinstance(x, RelativeDistinguishedName) for x in attributes):
|
D | __init__.py | 86 RelativeDistinguishedName,
|
D | extensions.py | 29 from cryptography.x509.name import RelativeDistinguishedName 552 if not isinstance(relative_name, RelativeDistinguishedName):
|
/external/python/pyasn1-modules/pyasn1_modules/ |
D | rfc2986.py | 34 RelativeDistinguishedName = rfc5280.RelativeDistinguishedName variable
|
D | rfc3280.py | 217 class RelativeDistinguishedName(univ.SetOf): class 221 RelativeDistinguishedName.componentType = AttributeTypeAndValue() 222 RelativeDistinguishedName.sizeSpec = constraint.ValueSizeConstraint(1, MAX) 229 RDNSequence.componentType = RelativeDistinguishedName() 1155 namedtype.NamedType('nameRelativeToCRLIssuer', RelativeDistinguishedName().subtype(
|
D | rfc5280.py | 325 class RelativeDistinguishedName(univ.SetOf): class 329 RelativeDistinguishedName.componentType = AttributeTypeAndValue() 330 RelativeDistinguishedName.sizeSpec = constraint.ValueSizeConstraint(1, MAX) 337 RDNSequence.componentType = RelativeDistinguishedName() 1172 namedtype.NamedType('nameRelativeToCRLIssuer', RelativeDistinguishedName().subtype(
|
D | rfc2459.py | 1033 class RelativeDistinguishedName(univ.SetOf): class 1038 componentType = RelativeDistinguishedName() 1113 namedtype.NamedType('nameRelativeToCRLIssuer', RelativeDistinguishedName().subtype(
|
/external/python/cryptography/tests/x509/ |
D | test_x509.py | 2985 relative_name=x509.RelativeDistinguishedName( 3172 relative_name=x509.RelativeDistinguishedName( 3189 relative_name=x509.RelativeDistinguishedName( 3567 x509.RelativeDistinguishedName( 3574 x509.RelativeDistinguishedName( 4845 x509.RelativeDistinguishedName([]) 4849 x509.RelativeDistinguishedName(["not-a-NameAttribute"]) 4853 x509.RelativeDistinguishedName( 4865 rdn1 = x509.RelativeDistinguishedName( 4875 rdn2 = x509.RelativeDistinguishedName( [all …]
|
D | test_x509_ext.py | 3861 x509.RelativeDistinguishedName( 3927 x509.RelativeDistinguishedName( 4525 relative_name=x509.RelativeDistinguishedName( 4933 relative_name=x509.RelativeDistinguishedName( 4966 relative_name=x509.RelativeDistinguishedName( 4996 relative_name=x509.RelativeDistinguishedName( 5144 relative_name=x509.RelativeDistinguishedName( 5159 relative_name=x509.RelativeDistinguishedName( 5177 relative_name=x509.RelativeDistinguishedName( 5192 relative_name=x509.RelativeDistinguishedName( [all …]
|
/external/cronet/net/cert/ |
D | x509_cert_types.cc | 30 for (const RelativeDistinguishedName& rdn : rdns) { in ParseDistinguishedName()
|
/external/python/asn1crypto/asn1crypto/ |
D | x509.py | 845 class RelativeDistinguishedName(SetOf): class 878 if not isinstance(other, RelativeDistinguishedName): 931 _child_spec = RelativeDistinguishedName 1033 rdns.append(RelativeDistinguishedName([ 1500 ('name_relative_to_crl_issuer', RelativeDistinguishedName, {'implicit': 1}),
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | decode_asn1.py | 75 return x509.Name(x509.RelativeDistinguishedName(rdn) for rdn in attributes) 625 relative_name = x509.RelativeDistinguishedName(attributes)
|
/external/python/cryptography/ |
D | CHANGELOG.rst | 331 :meth:`x509.RelativeDistinguishedName 332 <cryptography.x509.RelativeDistinguishedName.rfc4514_string>`, and 409 * The :class:`~cryptography.x509.RelativeDistinguishedName` class now 769 * Added :class:`~cryptography.x509.RelativeDistinguishedName` 771 :class:`~cryptography.x509.RelativeDistinguishedName` for 776 :class:`~cryptography.x509.RelativeDistinguishedName`. RDNs can
|
/external/python/cryptography/docs/x509/ |
D | reference.rst | 1249 gives access to an ordered list of :class:`RelativeDistinguishedName` 1254 :class:`RelativeDistinguishedName` objects (in the rare case of 1271 :type: list of :class:`RelativeDistinguishedName` 1321 An X.509 name consists of a list of :class:`RelativeDistinguishedName` 1344 .. class:: RelativeDistinguishedName(attributes) 2270 :type: :class:`RelativeDistinguishedName` or None 2277 Changed from :class:`Name` to :class:`RelativeDistinguishedName`. 2496 :type: :class:`RelativeDistinguishedName` or None
|
/external/cronet/net/data/ssl/certificates/ |
D | README | 83 RelativeDistinguishedName, rather than one AVA per RDN as normally seen.
|
/external/openthread/third_party/mbedtls/repo/ |
D | ChangeLog | 3162 RelativeDistinguishedName are not accepted any more. 3627 RelativeDistinguishedName are not accepted any more.
|
/external/mbedtls/ |
D | ChangeLog | 3964 RelativeDistinguishedName are not accepted any more. 4429 RelativeDistinguishedName are not accepted any more.
|