Searched refs:OCSPNonce (Results 1 – 6 of 6) sorted by relevance
/external/python/cryptography/tests/x509/ |
D | test_ocsp.py | 103 assert ext.value == x509.OCSPNonce( 163 builder = builder.add_extension(x509.OCSPNonce(b"123"), False) 165 builder.add_extension(x509.OCSPNonce(b"123"), False) 195 [x509.OCSPNonce(b"0000"), False], 196 [x509.OCSPNonce(b"\x00\x01\x02"), True], 531 x509.OCSPNonce(b"012345"), False 535 assert resp.extensions[0].value == x509.OCSPNonce(b"012345") 734 assert ext.value == x509.OCSPNonce(
|
D | test_x509_ext.py | 5135 x509.OCSPNonce(38) 5138 nonce1 = x509.OCSPNonce(b"0" * 5) 5139 nonce2 = x509.OCSPNonce(b"0" * 5) 5143 nonce1 = x509.OCSPNonce(b"0" * 5) 5144 nonce2 = x509.OCSPNonce(b"0" * 6) 5149 nonce1 = x509.OCSPNonce(b"nonce") 5156 nonce1 = x509.OCSPNonce(b"0" * 5) 5157 nonce2 = x509.OCSPNonce(b"0" * 5) 5158 nonce3 = x509.OCSPNonce(b"1" * 5)
|
/external/python/cryptography/src/cryptography/x509/ |
D | __init__.py | 25 OCSPNoCheck, OCSPNonce, PolicyConstraints, PolicyInformation,
|
D | extensions.py | 1425 class OCSPNonce(object): class 1435 if not isinstance(other, OCSPNonce):
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | decode_asn1.py | 799 return x509.OCSPNonce(_asn1_string_to_bytes(backend, nonce))
|
/external/python/cryptography/docs/x509/ |
D | reference.rst | 2605 .. class:: OCSPNonce(nonce)
|