Home
last modified time | relevance | path

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

/system/keymint/common/src/
Dcrypto.rs45 pub const SHA256_DIGEST_LEN: usize = 32; constant
481 const HKDF_EMPTY_SALT: [u8; SHA256_DIGEST_LEN] = [0; SHA256_DIGEST_LEN];
507 let n = (out_len + SHA256_DIGEST_LEN - 1) / SHA256_DIGEST_LEN; in expand()
511 let mut t = vec_try_with_capacity!(SHA256_DIGEST_LEN)?; in expand()
512 let mut okm = vec_try_with_capacity!(n * SHA256_DIGEST_LEN)?; in expand()
/system/keymint/ta/src/
Dsecret.rs48 kmr_common::crypto::SHA256_DIGEST_LEN, in compute_shared_secret()