Home
last modified time | relevance | path

Searched refs:new_from_stream_decrypt_with (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/system/security/keystore2/src/legacy_blob/
H A Dtests.rs81 let blob = LegacyBlobLoader::new_from_stream_decrypt_with(&mut &*BLOB, |_, _, _, _, _| { in read_golden_key_blob_test()
92 LegacyBlobLoader::new_from_stream_decrypt_with(&mut &*REAL_LEGACY_BLOB, |_, _, _, _, _| { in read_golden_key_blob_test()
106 let blob = LegacyBlobLoader::new_from_stream_decrypt_with( in read_aes_gcm_encrypted_key_blob_test()
140 LegacyBlobLoader::new_from_stream_decrypt_with(&mut &BLOB[0..15], |_, _, _, _, _| { in read_golden_key_blob_too_short_test()
/aosp_15_r20/system/security/keystore2/src/
H A Dlegacy_blob.rs485 pub fn new_from_stream_decrypt_with<F>(mut stream: impl Read, decrypt: F) -> Result<Blob> in new_from_stream_decrypt_with() method
802 Ok(Some(Self::new_from_stream_decrypt_with(&mut file, decrypt).context(ks_err!())?)) in read_generic_blob_decrypt_with()