Searched refs:BoringEq (Results 1 – 4 of 4) sorted by relevance
/system/keymint/tests/tests/ |
D | keyblob_test.rs | 23 use kmr_crypto_boring::eq::BoringEq; 98 let result = KeyBlob::deserialize(&hmac, &data, &hidden, BoringEq); in test_serialize_authenticated_legacy_keyblob() 102 let got = KeyBlob::deserialize(&hmac, &data, &hidden, BoringEq).unwrap(); in test_serialize_authenticated_legacy_keyblob() 157 let result = KeyBlob::deserialize(&hmac, &data, &hidden, BoringEq); in test_deserialize_authenticated_legacy_keyblob_fail() 184 assert!(KeyBlob::deserialize(&hmac, &data, &hidden, BoringEq).is_ok()); in test_deserialize_authenticated_legacy_keyblob_truncated() 189 KeyBlob::deserialize(&hmac, &data[..len], &hidden, BoringEq).is_err(), in test_deserialize_authenticated_legacy_keyblob_truncated()
|
/system/keymint/boringssl/src/ |
D | eq.rs | 20 pub struct BoringEq; struct 22 impl crypto::ConstTimeEq for BoringEq { implementation
|
D | tests.rs | 28 let comparator = eq::BoringEq; in test_eq()
|
/system/keymint/tests/src/bin/ |
D | auth-keyblob-parse.rs | 26 use kmr_crypto_boring::{eq::BoringEq, hmac::BoringHmac}; 76 let keyblob = match KeyBlob::deserialize(&hmac, &data, &hidden, BoringEq) { in process()
|