Home
last modified time | relevance | path

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

/aosp_15_r20/system/keymint/boringssl/src/
H A Dec.rs115 fn nist_public_key(&self, key: &ec::NistKey, curve: ec::NistCurve) -> Result<Vec<u8>, Error> { in nist_public_key()
288 fn new(key: ec::NistKey, curve: ec::NistCurve, digest: MessageDigest) -> Result<Self, Error> { in new()
360 fn new(key: ec::NistKey, curve: ec::NistCurve) -> Result<Self, Error> { in new()
/aosp_15_r20/system/keymint/common/src/crypto/
H A Dtraits.rs385 fn nist_public_key(&self, key: &ec::NistKey, curve: ec::NistCurve) -> Result<Vec<u8>, Error>; in nist_public_key()
651 fn nist_public_key(&self, _key: &ec::NistKey, _curve: ec::NistCurve) -> Result<Vec<u8>, Error> { in nist_public_key()
H A Dec.rs324 pub struct NistKey(pub Vec<u8>); struct