Searched refs:NoticeReference (Results 1 – 10 of 10) sorted by relevance
/external/python/cryptography/tests/x509/ |
D | test_x509_ext.py | 404 x509.NoticeReference("org", [1, 2, "three"]) 408 x509.NoticeReference("org", None) 412 nr = x509.NoticeReference(u"org", iter(numbers)) 416 nr = x509.NoticeReference(u"org", [1, 3, 4]) 430 nr = x509.NoticeReference("org", [1, 2]) 431 nr2 = x509.NoticeReference("org", [1, 2]) 435 nr = x509.NoticeReference("org", [1, 2]) 436 nr2 = x509.NoticeReference("org", [1]) 437 nr3 = x509.NoticeReference(None, [1, 2]) 443 nr = x509.NoticeReference("org", [1, 2]) [all …]
|
D | test_x509.py | 2383 x509.NoticeReference(u"my org", [1, 2, 3, 4]), 2395 x509.NoticeReference(u"UTF8\u2122'", [1, 2, 3, 4]), 2412 x509.NoticeReference(u"my org", [1, 2, 3, 4]),
|
/external/python/cryptography/src/cryptography/x509/ |
D | __init__.py | 24 IssuingDistributionPoint, KeyUsage, NameConstraints, NoticeReference,
|
D | extensions.py | 750 notice_reference, NoticeReference 784 class NoticeReference(object): class 802 if not isinstance(other, NoticeReference):
|
/external/python/pyasn1-modules/pyasn1_modules/ |
D | rfc5280.py | 1310 class NoticeReference(univ.Sequence): class 1314 NoticeReference.componentType = namedtype.NamedTypes( 1325 namedtype.OptionalNamedType('noticeRef', NoticeReference()),
|
D | rfc3280.py | 1414 class NoticeReference(univ.Sequence): class 1418 NoticeReference.componentType = namedtype.NamedTypes( 1429 namedtype.OptionalNamedType('noticeRef', NoticeReference()),
|
D | rfc2459.py | 885 class NoticeReference(univ.Sequence): class 894 namedtype.OptionalNamedType('noticeRef', NoticeReference()),
|
/external/python/asn1crypto/asn1crypto/ |
D | x509.py | 1591 class NoticeReference(Sequence): class 1600 ('notice_ref', NoticeReference, {'optional': True}),
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | decode_asn1.py | 322 notice_reference = x509.NoticeReference(
|
/external/python/cryptography/docs/x509/ |
D | reference.rst | 2488 :type: :class:`NoticeReference` or None 2500 .. class:: NoticeReference(organization, notice_numbers)
|