Searched refs:UnsupportedAlgorithm (Results 1 – 25 of 50) sorted by relevance
12
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/ |
D | x448.py | 11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 20 raise UnsupportedAlgorithm( 40 raise UnsupportedAlgorithm( 50 raise UnsupportedAlgorithm(
|
D | x25519.py | 11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 20 raise UnsupportedAlgorithm( 40 raise UnsupportedAlgorithm( 50 raise UnsupportedAlgorithm(
|
/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/ |
D | pbkdf2.py | 9 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons 20 raise UnsupportedAlgorithm( 26 raise UnsupportedAlgorithm(
|
D | kbkdf.py | 13 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons 34 raise UnsupportedAlgorithm( 40 raise UnsupportedAlgorithm( 46 raise UnsupportedAlgorithm(
|
D | hkdf.py | 11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons 22 raise UnsupportedAlgorithm( 58 raise UnsupportedAlgorithm(
|
D | concatkdf.py | 11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons 64 raise UnsupportedAlgorithm( 105 raise UnsupportedAlgorithm(
|
D | scrypt.py | 11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons 27 raise UnsupportedAlgorithm(
|
D | x963kdf.py | 11 AlreadyFinalized, InvalidKey, UnsupportedAlgorithm, _Reasons 38 raise UnsupportedAlgorithm(
|
/external/scapy/scapy/layers/tls/crypto/ |
D | pkcs1.py | 20 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/ |
D | exceptions.py | 24 class UnsupportedAlgorithm(Exception): class 26 super(UnsupportedAlgorithm, self).__init__(message)
|
/external/python/cryptography/src/cryptography/hazmat/primitives/twofactor/ |
D | totp.py | 8 UnsupportedAlgorithm, _Reasons 21 raise UnsupportedAlgorithm(
|
D | hotp.py | 12 UnsupportedAlgorithm, _Reasons 25 raise UnsupportedAlgorithm(
|
/external/python/cryptography/tests/wycheproof/ |
D | test_ecdsa.py | 11 from cryptography.exceptions import InvalidSignature, UnsupportedAlgorithm 50 except (UnsupportedAlgorithm, ValueError):
|
D | test_ecdh.py | 11 from cryptography.exceptions import UnsupportedAlgorithm 74 except UnsupportedAlgorithm:
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ |
D | cmac.py | 9 AlreadyFinalized, UnsupportedAlgorithm, _Reasons 19 raise UnsupportedAlgorithm(
|
D | hmac.py | 9 AlreadyFinalized, UnsupportedAlgorithm, _Reasons 20 raise UnsupportedAlgorithm(
|
D | hashes.py | 13 AlreadyFinalized, UnsupportedAlgorithm, _Reasons 71 raise UnsupportedAlgorithm(
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | rsa.py | 11 InvalidSignature, UnsupportedAlgorithm, _Reasons 48 raise UnsupportedAlgorithm( 54 raise UnsupportedAlgorithm( 61 raise UnsupportedAlgorithm( 167 raise UnsupportedAlgorithm( 180 raise UnsupportedAlgorithm( 199 raise UnsupportedAlgorithm(
|
D | cmac.py | 10 InvalidSignature, UnsupportedAlgorithm, _Reasons 20 raise UnsupportedAlgorithm("This backend does not support CMAC.",
|
D | hashes.py | 9 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 27 raise UnsupportedAlgorithm(
|
D | hmac.py | 10 InvalidSignature, UnsupportedAlgorithm, _Reasons 30 raise UnsupportedAlgorithm(
|
D | ciphers.py | 8 from cryptography.exceptions import InvalidTag, UnsupportedAlgorithm, _Reasons 42 raise UnsupportedAlgorithm( 58 raise UnsupportedAlgorithm(msg, _Reasons.UNSUPPORTED_CIPHER)
|
D | ec.py | 9 InvalidSignature, UnsupportedAlgorithm, _Reasons 23 raise UnsupportedAlgorithm( 64 raise UnsupportedAlgorithm( 157 raise UnsupportedAlgorithm(
|
D | dh.py | 8 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 74 raise UnsupportedAlgorithm( 204 raise UnsupportedAlgorithm( 270 raise UnsupportedAlgorithm(
|
/external/python/cryptography/src/cryptography/hazmat/primitives/serialization/ |
D | ssh.py | 13 from cryptography.exceptions import UnsupportedAlgorithm 35 raise UnsupportedAlgorithm('Key type is not supported.')
|
12