Home
last modified time | relevance | path

Searched refs:UnsupportedAlgorithm (Results 1 – 25 of 50) sorted by relevance

12

/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/
Dx448.py11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons
20 raise UnsupportedAlgorithm(
40 raise UnsupportedAlgorithm(
50 raise UnsupportedAlgorithm(
Dx25519.py11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons
20 raise UnsupportedAlgorithm(
40 raise UnsupportedAlgorithm(
50 raise UnsupportedAlgorithm(
/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/
Dpbkdf2.py9 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons
20 raise UnsupportedAlgorithm(
26 raise UnsupportedAlgorithm(
Dkbkdf.py13 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons
34 raise UnsupportedAlgorithm(
40 raise UnsupportedAlgorithm(
46 raise UnsupportedAlgorithm(
Dhkdf.py11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons
22 raise UnsupportedAlgorithm(
58 raise UnsupportedAlgorithm(
Dconcatkdf.py11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons
64 raise UnsupportedAlgorithm(
105 raise UnsupportedAlgorithm(
Dscrypt.py11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons
27 raise UnsupportedAlgorithm(
Dx963kdf.py11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons
38 raise UnsupportedAlgorithm(
/external/scapy/scapy/layers/tls/crypto/
Dpkcs1.py20 from cryptography.exceptions import InvalidSignature, UnsupportedAlgorithm
158 except UnsupportedAlgorithm:
160 raise UnsupportedAlgorithm("RSA verification with %s" % h)
204 except UnsupportedAlgorithm:
206 raise UnsupportedAlgorithm("RSA signature with %s" % h)
/external/python/cryptography/src/cryptography/
Dexceptions.py24 class UnsupportedAlgorithm(Exception): class
26 super(UnsupportedAlgorithm, self).__init__(message)
/external/python/cryptography/src/cryptography/hazmat/primitives/twofactor/
Dtotp.py8 UnsupportedAlgorithm, _Reasons
21 raise UnsupportedAlgorithm(
Dhotp.py12 UnsupportedAlgorithm, _Reasons
25 raise UnsupportedAlgorithm(
/external/python/cryptography/tests/wycheproof/
Dtest_ecdsa.py11 from cryptography.exceptions import InvalidSignature, UnsupportedAlgorithm
50 except (UnsupportedAlgorithm, ValueError):
Dtest_ecdh.py11 from cryptography.exceptions import UnsupportedAlgorithm
74 except UnsupportedAlgorithm:
/external/python/cryptography/src/cryptography/hazmat/primitives/
Dcmac.py9 AlreadyFinalized, UnsupportedAlgorithm, _Reasons
19 raise UnsupportedAlgorithm(
Dhmac.py9 AlreadyFinalized, UnsupportedAlgorithm, _Reasons
20 raise UnsupportedAlgorithm(
Dhashes.py13 AlreadyFinalized, UnsupportedAlgorithm, _Reasons
71 raise UnsupportedAlgorithm(
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Drsa.py11 InvalidSignature, UnsupportedAlgorithm, _Reasons
48 raise UnsupportedAlgorithm(
54 raise UnsupportedAlgorithm(
61 raise UnsupportedAlgorithm(
167 raise UnsupportedAlgorithm(
180 raise UnsupportedAlgorithm(
199 raise UnsupportedAlgorithm(
Dcmac.py10 InvalidSignature, UnsupportedAlgorithm, _Reasons
20 raise UnsupportedAlgorithm("This backend does not support CMAC.",
Dhashes.py9 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons
27 raise UnsupportedAlgorithm(
Dhmac.py10 InvalidSignature, UnsupportedAlgorithm, _Reasons
30 raise UnsupportedAlgorithm(
Dciphers.py8 from cryptography.exceptions import InvalidTag, UnsupportedAlgorithm, _Reasons
42 raise UnsupportedAlgorithm(
58 raise UnsupportedAlgorithm(msg, _Reasons.UNSUPPORTED_CIPHER)
Dec.py9 InvalidSignature, UnsupportedAlgorithm, _Reasons
23 raise UnsupportedAlgorithm(
64 raise UnsupportedAlgorithm(
157 raise UnsupportedAlgorithm(
Ddh.py8 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons
74 raise UnsupportedAlgorithm(
204 raise UnsupportedAlgorithm(
270 raise UnsupportedAlgorithm(
/external/python/cryptography/src/cryptography/hazmat/primitives/serialization/
Dssh.py13 from cryptography.exceptions import UnsupportedAlgorithm
35 raise UnsupportedAlgorithm('Key type is not supported.')

12