Searched refs:RelativeDistinguishedName (Results 1 – 13 of 13) sorted by relevance
/external/python/cryptography/src/cryptography/x509/ |
D | name.py | 147 class RelativeDistinguishedName(object): class 175 if not isinstance(other, RelativeDistinguishedName): 201 RelativeDistinguishedName([x]) for x in attributes 203 elif all(isinstance(x, RelativeDistinguishedName) for x in attributes):
|
D | __init__.py | 36 Name, NameAttribute, RelativeDistinguishedName
|
D | extensions.py | 25 from cryptography.x509.name import RelativeDistinguishedName 507 if not isinstance(relative_name, RelativeDistinguishedName):
|
/external/python/pyasn1-modules/pyasn1_modules/ |
D | rfc2986.py | 34 RelativeDistinguishedName = rfc5280.RelativeDistinguishedName variable
|
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 | 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 | 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 | 2475 relative_name=x509.RelativeDistinguishedName([ 2606 relative_name=x509.RelativeDistinguishedName([ 2619 relative_name=x509.RelativeDistinguishedName([ 2918 x509.RelativeDistinguishedName([ 2923 x509.RelativeDistinguishedName([ 3967 x509.RelativeDistinguishedName([]) 3971 x509.RelativeDistinguishedName(["not-a-NameAttribute"]) 3975 x509.RelativeDistinguishedName([ 3981 rdn1 = x509.RelativeDistinguishedName([ 3985 rdn2 = x509.RelativeDistinguishedName([ [all …]
|
D | test_x509_ext.py | 3631 x509.RelativeDistinguishedName([ 3691 x509.RelativeDistinguishedName([ 4168 relative_name=x509.RelativeDistinguishedName([ 4512 relative_name=x509.RelativeDistinguishedName([ 4542 relative_name=x509.RelativeDistinguishedName([ 4567 relative_name=x509.RelativeDistinguishedName([ 4666 relative_name=x509.RelativeDistinguishedName([ 4678 relative_name=x509.RelativeDistinguishedName([ 4693 relative_name=x509.RelativeDistinguishedName([ 4705 relative_name=x509.RelativeDistinguishedName([ [all …]
|
/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/ |
D | CHANGELOG.rst | 37 :meth:`x509.RelativeDistinguishedName 38 <cryptography.x509.RelativeDistinguishedName.rfc4514_string>`, and 115 * The :class:`~cryptography.x509.RelativeDistinguishedName` class now 475 * Added :class:`~cryptography.x509.RelativeDistinguishedName` 477 :class:`~cryptography.x509.RelativeDistinguishedName` for 482 :class:`~cryptography.x509.RelativeDistinguishedName`. RDNs can
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | decode_asn1.py | 78 return x509.Name(x509.RelativeDistinguishedName(rdn) for rdn in attributes) 616 relative_name = x509.RelativeDistinguishedName(attributes)
|
/external/python/cryptography/docs/x509/ |
D | reference.rst | 1203 gives access to an ordered list of :class:`RelativeDistinguishedName` 1208 :class:`RelativeDistinguishedName` objects (in the rare case of 1225 :type: list of :class:`RelativeDistinguishedName` 1275 An X.509 name consists of a list of :class:`RelativeDistinguishedName` 1298 .. class:: RelativeDistinguishedName(attributes) 2184 :type: :class:`RelativeDistinguishedName` or None 2191 Changed from :class:`Name` to :class:`RelativeDistinguishedName`. 2410 :type: :class:`RelativeDistinguishedName` or None
|