Home
last modified time | relevance | path

Searched defs:ikm (Results 1 – 6 of 6) sorted by relevance

/system/security/mls/mls-rs-crypto-boringssl/src/
Dkdf.rs152 let ikm: [u8; 22] = decode_hex("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"); in sha256() localVariable
170 let ikm: [u8; 16] = decode_hex("5d3db20e8238a90b62a600fa57fdb318"); in sha512() localVariable
229 let ikm: [u8; 16] = decode_hex("5d3db20e8238a90b62a600fa57fdb318"); in sha512_expand_long_okm() localVariable
242 let ikm: [u8; 22] = decode_hex("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"); in unsupported_cipher_suites() localVariable
Dlib.rs453 let ikm: [u8; 32] = in kem_derive() localVariable
496 let ikm: [u8; 22] = decode_hex("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"); in kdf_extract_and_expand() localVariable
Dhpke.rs385 let ikm: [u8; 32] = in dh_kem_derive() localVariable
/system/keymint/tests/src/
Dlib.rs84 ikm: &'static str, in test_hkdf() field
152 let ikm = hex::decode(test.ikm).unwrap(); in test_hkdf() localVariable
/system/authgraph/tests/src/
Dlib.rs103 ikm: &'static str, in test_hkdf() field
151 let ikm = hex::decode(test.ikm).unwrap(); in test_hkdf() localVariable
161 let ikm = EcdhSecret(ikm.to_vec()); in hkdf() localVariable
/system/security/identity/util/src/java/com/android/security/identity/internal/
DUtil.java1051 String macAlgorithm, final byte[] ikm, final byte[] salt, final byte[] info, int size) { in computeHkdf()