Searched defs:ImportKeyRequest (Results 1 – 3 of 3) sorted by relevance
92 pub struct ImportKeyRequest { struct93 pub key_params: Vec<KeyParam>,94 pub key_format: KeyFormat,95 pub key_data: Vec<u8>,96 pub attestation_key: Option<AttestationKey>,
602 struct ImportKeyRequest : public KeymasterMessage { struct603 explicit ImportKeyRequest(int32_t ver) : KeymasterMessage(ver) {} in ImportKeyRequest() argument609 AuthorizationSet key_description;610 keymaster_key_format_t key_format;611 KeymasterKeyBlob key_data;612 KeymasterKeyBlob attestation_signing_key_blob;613 AuthorizationSet attest_key_params;614 KeymasterBlob issuer_subject;
513 TEST(RoundTrip, ImportKeyRequest) { in TEST() argument