Home
last modified time | relevance | path

Searched refs:decode_dss_signature (Results 1 – 7 of 7) sorted by relevance

/external/python/cryptography/tests/hazmat/primitives/
Dtest_asym_utils.py10 Prehashed, decode_dss_signature, decode_rfc6979_signature,
28 assert decode_dss_signature(sig) == (1, 1)
39 assert decode_dss_signature(sig2) == r_s1
43 assert decode_dss_signature(sig3) == (0, 0)
47 assert decode_dss_signature(sig4) == (-1, 0)
69 decode_dss_signature(b"0\x06\x02\x01\x01\x02\x01\x01\x00\x00\x00")
76 decode_dss_signature(b"0\x07\x02\x01\x01\x02\x02\x01")
80 decode_dss_signature(b"\x00\x00")
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/
Dutils.py24 return decode_dss_signature(signature)
27 def decode_dss_signature(signature): function
/external/python/cryptography/docs/hazmat/primitives/asymmetric/
Dutils.rst9 .. function:: decode_dss_signature(signature)
Ddsa.rst83 :func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature`.
Dec.rst69 :func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature`.
/external/python/cryptography/tests/x509/
Dtest_x509.py28 decode_dss_signature
3524 r, s = decode_dss_signature(cert.signature)
3694 r, s = decode_dss_signature(cert.signature)
/external/python/cryptography/
DCHANGELOG.rst852 :func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature`.