Searched refs:UnsupportedAlgorithm (Results  1 – 25 of 55) sorted by relevance
123
| /external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/ | 
| D | ed448.py | 11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 21             raise UnsupportedAlgorithm( 48             raise UnsupportedAlgorithm( 59             raise UnsupportedAlgorithm(
  | 
| D | x448.py | 11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 21             raise UnsupportedAlgorithm( 42             raise UnsupportedAlgorithm( 53             raise UnsupportedAlgorithm(
  | 
| D | x25519.py | 11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 21             raise UnsupportedAlgorithm( 42             raise UnsupportedAlgorithm( 53             raise UnsupportedAlgorithm(
  | 
| D | ed25519.py | 11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 25             raise UnsupportedAlgorithm( 52             raise UnsupportedAlgorithm( 64             raise UnsupportedAlgorithm(
  | 
| /external/python/cryptography/src/cryptography/hazmat/primitives/kdf/ | 
| D | pbkdf2.py | 11     UnsupportedAlgorithm, 25             raise UnsupportedAlgorithm( 31             raise UnsupportedAlgorithm(
  | 
| D | kbkdf.py | 15     UnsupportedAlgorithm, 50             raise UnsupportedAlgorithm( 56             raise UnsupportedAlgorithm( 62             raise UnsupportedAlgorithm(
  | 
| D | hkdf.py | 13     UnsupportedAlgorithm, 27             raise UnsupportedAlgorithm( 64             raise UnsupportedAlgorithm(
  | 
| D | concatkdf.py | 13     UnsupportedAlgorithm, 68             raise UnsupportedAlgorithm( 111             raise UnsupportedAlgorithm(
  | 
| D | scrypt.py | 13     UnsupportedAlgorithm, 32             raise UnsupportedAlgorithm(
  | 
| D | x963kdf.py | 13     UnsupportedAlgorithm, 44             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 | 25 class UnsupportedAlgorithm(Exception):  class 27         super(UnsupportedAlgorithm, self).__init__(message)
  | 
| /external/python/cryptography/src/cryptography/hazmat/primitives/ | 
| D | poly1305.py | 11     UnsupportedAlgorithm, 21             raise UnsupportedAlgorithm(
  | 
| D | cmac.py | 10     UnsupportedAlgorithm, 22             raise UnsupportedAlgorithm(
  | 
| D | hmac.py | 10     UnsupportedAlgorithm, 23             raise UnsupportedAlgorithm(
  | 
| /external/python/cryptography/src/cryptography/hazmat/backends/openssl/ | 
| D | rsa.py | 10     UnsupportedAlgorithm, 57             raise UnsupportedAlgorithm( 63             raise UnsupportedAlgorithm( 70         raise UnsupportedAlgorithm( 149             raise UnsupportedAlgorithm( 168         raise UnsupportedAlgorithm( 192             raise UnsupportedAlgorithm( 201         raise UnsupportedAlgorithm(
  | 
| D | cmac.py | 11     UnsupportedAlgorithm, 21             raise UnsupportedAlgorithm(
  | 
| D | hashes.py | 9 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 27                 raise UnsupportedAlgorithm(
  | 
| D | hmac.py | 11     UnsupportedAlgorithm, 29                 raise UnsupportedAlgorithm(
  | 
| D | dh.py | 8 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 74                 raise UnsupportedAlgorithm( 193                 raise UnsupportedAlgorithm( 264                 raise UnsupportedAlgorithm(
  | 
| D | ec.py | 10     UnsupportedAlgorithm, 28         raise UnsupportedAlgorithm( 80         raise UnsupportedAlgorithm( 173             raise UnsupportedAlgorithm(
  | 
| /external/python/cryptography/src/cryptography/hazmat/primitives/twofactor/ | 
| D | totp.py | 7 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 28             raise UnsupportedAlgorithm(
  | 
| D | hotp.py | 11 from cryptography.exceptions import UnsupportedAlgorithm, _Reasons 26             raise UnsupportedAlgorithm(
  | 
| /external/python/cryptography/tests/wycheproof/ | 
| D | test_ecdsa.py | 11 from cryptography.exceptions import InvalidSignature, UnsupportedAlgorithm 64     except (UnsupportedAlgorithm, ValueError):
  | 
| D | test_ecdh.py | 11 from cryptography.exceptions import UnsupportedAlgorithm 75     except UnsupportedAlgorithm:
  | 
        123