Home
last modified time | relevance | path

Searched refs:Algorithm (Results 1 – 3 of 3) sorted by relevance

/trusty/user/app/keymint/keys/
Dlegacy.rs16 keymint::{Algorithm, BootInfo, EcCurve, ErrorCode, KeyParam, KeyPurpose, SecurityLevel},
198 let key_material = match get_tag_value!(chars, Algorithm, ErrorCode::InvalidKeyBlob)? { in convert_key()
200 Algorithm::Aes => { in convert_key()
210 Algorithm::TripleDes => { in convert_key()
213 Algorithm::Hmac => { in convert_key()
220 Algorithm::Rsa => crypto::KeyMaterial::Rsa(crypto::rsa::Key(raw_key_material).into()), in convert_key()
222 Algorithm::Ec => { in convert_key()
/trusty/user/app/keymint/
Dipc_manager.rs36 use kmr_wire::keymint::{Algorithm, BootInfo};
92 algorithm: Algorithm, in keymaster_algorithm_to_signing_algorithm() argument
95 Algorithm::Rsa => Ok(SigningAlgorithm::Rsa), in keymaster_algorithm_to_signing_algorithm()
96 Algorithm::Ec => Ok(SigningAlgorithm::Ec), in keymaster_algorithm_to_signing_algorithm()
748 algorithm: Algorithm, in get_set_attestation_key_message() argument
765 let req = get_set_attestation_key_message(Algorithm::Ec, &[0; 1024]) in set_attestation_keys_certs()
/trusty/user/app/sample/hwcryptohal/server/
Dservice_encryption_key.rs198 .algorithm(coset::iana::Algorithm::A256GCM) in try_from()