Home
last modified time | relevance | path

Searched defs:DecryptKey (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/boringssl/src/rust/bssl-crypto/src/
H A Daes.rs87 pub struct DecryptKey(bssl_sys::AES_KEY); struct
89 impl DecryptKey { impl
91 pub fn new_128(key: &[u8; 16]) -> DecryptKey { in new_128()
96 pub fn new_256(key: &[u8; 32]) -> DecryptKey { in new_256()
135 fn new_decrypt_key(key: &[u8]) -> DecryptKey { in new_decrypt_key()
/aosp_15_r20/external/cronet/third_party/boringssl/src/rust/bssl-crypto/src/
H A Daes.rs87 pub struct DecryptKey(bssl_sys::AES_KEY); struct
89 impl DecryptKey { impl
91 pub fn new_128(key: &[u8; 16]) -> DecryptKey { in new_128()
96 pub fn new_256(key: &[u8; 32]) -> DecryptKey { in new_256()
135 fn new_decrypt_key(key: &[u8]) -> DecryptKey { in new_decrypt_key()
/aosp_15_r20/system/keymaster/key_blob_utils/
H A Dauth_encrypted_key_blob.cpp337 KmErrorOr<KeymasterKeyBlob> DecryptKey(const DeserializedKey& key, const AuthorizationSet& hidden, in DecryptKey() function