/system/keymint/common/src/crypto/ |
D | rsa.rs | 3 use super::{KeyMaterial, KeySizeInBits, OpaqueOr, RsaExponent}; 181 pub fn import_pkcs8_key(data: &[u8]) -> Result<(KeyMaterial, KeySizeInBits, RsaExponent), Error> { in import_pkcs8_key() argument 198 ) -> Result<(KeyMaterial, KeySizeInBits, RsaExponent), Error> { in import_pkcs1_key() argument 219 Ok((KeyMaterial::Rsa(key.into()), KeySizeInBits(key_size), RsaExponent(pub_exponent))) in import_pkcs1_key()
|
D | traits.rs | 6 use kmr_wire::{keymint, keymint::Digest, KeySizeInBits, RsaExponent}; 232 pub_exponent: RsaExponent, in generate_key() argument 243 ) -> Result<(KeyMaterial, KeySizeInBits, RsaExponent), Error> { in import_pkcs8_key() argument 564 _pub_exponent: RsaExponent, in generate_key() argument
|
/system/keymint/boringssl/src/ |
D | rsa.rs | 13 use kmr_wire::{keymint, keymint::Digest, KeySizeInBits, RsaExponent}; 17 const MIN_RSA_EXPONENT: RsaExponent = RsaExponent(3); 37 pub_exponent: RsaExponent, in generate_key() argument
|
/system/keymint/common/src/bin/ |
D | cddl-dump.rs | 19 show_schema::<kmr_wire::RsaExponent>(); in main()
|
D | keyblob-cddl-dump.rs | 120 schema.add(kmr_wire::RsaExponent(65537)); in main()
|
/system/keymint/common/src/keyblob/ |
D | keyblob.cddl | 87 [1342177480, RsaExponent], ; Tag_RsaPublicExponent 271 RsaExponent = int
|
/system/keymint/common/ |
D | generated.cddl | 3 RsaExponent = int 325 [1342177480, RsaExponent], ; Tag_RsaPublicExponent
|
/system/keymint/wire/src/ |
D | keymint.rs | 16 cbor, cbor_type_error, try_from_n, vec_try, AsCborValue, CborError, KeySizeInBits, RsaExponent, 333 RsaPublicExponent(RsaExponent), 488 KeyParam::RsaPublicExponent(<RsaExponent>::from_cbor_value(raw)?) in from_cbor_value() 777 RsaExponent::cddl_ref(), in cddl_schema()
|
D | types.rs | 25 pub struct RsaExponent(pub u64); struct
|
/system/keymint/common/src/ |
D | crypto.rs | 14 use kmr_wire::{cbor, cbor_type_error, AsCborValue, CborError, KeySizeInBits, RsaExponent}; 56 Rsa(KeySizeInBits, RsaExponent),
|
/system/keymint/common/src/tag/ |
D | legacy.rs | 12 KeySizeInBits, RsaExponent, 358 Tag::RsaPublicExponent => KeyParam::RsaPublicExponent(RsaExponent(consume_u64(data)?)), in deserialize()
|
/system/keymint/hal/src/ |
D | hal.rs | 26 use kmr_wire::{keymint::DateTime, keymint::KeyParam, KeySizeInBits, RsaExponent}; 542 Some(KeyParam::RsaPublicExponent(RsaExponent(value_of!(val, LongInteger)? as u64))) in try_fromm()
|
/system/keymint/ta/src/ |
D | cert.rs | 23 KeySizeInBits, RsaExponent, 739 RsaExponent, in decode_value_from_bytes()
|