Home
last modified time | relevance | path

Searched refs:NoticeReference (Results 1 – 10 of 10) sorted by relevance

/external/python/cryptography/tests/x509/
Dtest_x509_ext.py404 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 …]
Dtest_x509.py2383 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__.py24 IssuingDistributionPoint, KeyUsage, NameConstraints, NoticeReference,
Dextensions.py750 notice_reference, NoticeReference
784 class NoticeReference(object): class
802 if not isinstance(other, NoticeReference):
/external/python/pyasn1-modules/pyasn1_modules/
Drfc5280.py1310 class NoticeReference(univ.Sequence): class
1314 NoticeReference.componentType = namedtype.NamedTypes(
1325 namedtype.OptionalNamedType('noticeRef', NoticeReference()),
Drfc3280.py1414 class NoticeReference(univ.Sequence): class
1418 NoticeReference.componentType = namedtype.NamedTypes(
1429 namedtype.OptionalNamedType('noticeRef', NoticeReference()),
Drfc2459.py885 class NoticeReference(univ.Sequence): class
894 namedtype.OptionalNamedType('noticeRef', NoticeReference()),
/external/python/asn1crypto/asn1crypto/
Dx509.py1591 class NoticeReference(Sequence): class
1600 ('notice_ref', NoticeReference, {'optional': True}),
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Ddecode_asn1.py322 notice_reference = x509.NoticeReference(
/external/python/cryptography/docs/x509/
Dreference.rst2488 :type: :class:`NoticeReference` or None
2500 .. class:: NoticeReference(organization, notice_numbers)