Home
last modified time | relevance | path

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

/aosp_15_r20/external/scapy/scapy/layers/tls/crypto/
H A 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)
/aosp_15_r20/system/keymint/boringssl/src/
H A Derr.rs58 | ffi::EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE => ErrorCode::UnsupportedAlgorithm, in translate_evp_error()
97 ErrorCode::UnsupportedAlgorithm in translate_pkcs8_error()
111 ffi::X509V3_R_UNKNOWN_OPTION => ErrorCode::UnsupportedAlgorithm, in translate_x509v3_error()
/aosp_15_r20/trusty/user/app/keymint/
Dkey_wrapper.rs50 UnsupportedAlgorithm, in ephemeral_wrap()
/aosp_15_r20/system/keymint/ta/src/
H A Dcert.rs91 return Err(km_err!(UnsupportedAlgorithm, "unexpected cert signing key type")); in tbs_certificate()
103 UnsupportedAlgorithm, in tbs_certificate()
/aosp_15_r20/system/keymint/wire/src/
H A Dkeymint.rs194 UnsupportedAlgorithm = -4, enumerator
/aosp_15_r20/system/keymint/common/src/
H A Dtag.rs185 get_tag_value!(params, Algorithm, ErrorCode::UnsupportedAlgorithm) in get_algorithm()