Home
last modified time | relevance | path

Searched defs:key_material (Results 1 – 25 of 36) sorted by relevance

12

/aosp12/system/keymaster/include/keymaster/
H A Dkey.h50 const KeymasterKeyBlob& key_material() const { return key_material_; } in key_material() function
51 KeymasterKeyBlob& key_material() { return key_material_; } in key_material() function
/aosp12/system/keymaster/key_blob_utils/
H A Dintegrity_assured_key_blob.cpp75 keymaster_error_t SerializeIntegrityAssuredBlob(const KeymasterKeyBlob& key_material, in SerializeIntegrityAssuredBlob()
99 KeymasterKeyBlob* key_material, in DeserializeIntegrityAssuredBlob()
120 KeymasterKeyBlob* key_material, in DeserializeIntegrityAssuredBlob_NoHmacCheck()
H A Dsoftware_keyblobs.cpp166 KeymasterKeyBlob* key_material, in ParseOldSoftkeymasterBlob()
238 KeymasterKeyBlob* key_material, in ParseAuthEncryptedBlob()
/aosp12/system/keymaster/contexts/
H A Dkeymaster1_passthrough_context.cpp118 const AuthorizationSet& additional_params, KeymasterKeyBlob* key_material, in parseKeymaster1HwBlob()
148 KeymasterKeyBlob key_material; in ParseKeyBlob() local
183 KeymasterKeyBlob key_material; in DeleteKey() local
216 const KeymasterKeyBlob& key_material, KeymasterKeyBlob* blob, AuthorizationSet* hw_enforced, in CreateKeyBlob()
H A Dsoft_keymaster_context.cpp181 const KeymasterKeyBlob& key_material, in CreateKeyBlob()
260 KeymasterKeyBlob key_material; in ParseKeyBlob() local
310 KeymasterKeyBlob key_material; in DeleteKey() local
337 KeymasterKeyBlob* key_material, AuthorizationSet* hw_enforced, in ParseKeymaster1HwBlob()
H A Dpure_soft_keymaster_context.cpp125 const KeymasterKeyBlob& key_material, in CreateKeyBlob()
247 KeymasterKeyBlob key_material; in ParseKeyBlob() local
458 KeymasterKeyBlob key_material = {output.peek_read(), output.available_read()}; in UnwrapKey() local
/aosp12/system/keymaster/android_keymaster/
H A Dandroid_keymaster_messages.cpp28 void set_key_blob(keymaster_key_blob_t* key_blob, const void* key_material, size_t length) { in set_key_blob()
317 void GetKeyCharacteristicsRequest::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
349 void BeginOperationRequest::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
548 void ImportKeyResponse::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
578 void ExportKeyRequest::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
599 void ExportKeyResponse::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
623 void DeleteKeyRequest::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
668 void AttestKeyRequest::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
702 void UpgradeKeyRequest::SetKeyMaterial(const void* key_material, size_t length) { in SetKeyMaterial()
812 void ImportWrappedKeyRequest::SetWrappedMaterial(const void* key_material, size_t length) { in SetWrappedMaterial()
[all …]
/aosp12/system/keymaster/km_openssl/
H A Dsymmetric_key.cpp51 KeymasterKeyBlob key_material(key_data_size); in GenerateKey() local
106 SymmetricKey::SymmetricKey(KeymasterKeyBlob&& key_material, AuthorizationSet&& hw_enforced, in SymmetricKey()
H A Dtriple_des_key.cpp42 keymaster_error_t TripleDesKeyFactory::LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
H A Daes_key.cpp42 keymaster_error_t AesKeyFactory::LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
H A Dhmac_key.cpp40 keymaster_error_t HmacKeyFactory::LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
H A Drsa_key_factory.cpp93 KeymasterKeyBlob key_material; in GenerateKey() local
168 const KeymasterKeyBlob& key_material, in UpdateImportKeyDescription()
H A Dasymmetric_key_factory.cpp41 keymaster_error_t AsymmetricKeyFactory::LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
H A Dec_key_factory.cpp123 KeymasterKeyBlob key_material; in GenerateKey() local
195 const KeymasterKeyBlob& key_material, in UpdateImportKeyDescription()
/aosp12/system/keymaster/include/keymaster/km_openssl/
H A Daes_key.h53 AesKey(KeymasterKeyBlob&& key_material, AuthorizationSet&& hw_enforced, in AesKey()
H A Dhmac_key.h51 HmacKey(KeymasterKeyBlob&& key_material, AuthorizationSet&& hw_enforced, in HmacKey()
H A Dtriple_des_key.h54 TripleDesKey(KeymasterKeyBlob&& key_material, AuthorizationSet&& hw_enforced, in TripleDesKey()
/aosp12/system/keymaster/legacy_support/
H A Dkeymaster_passthrough_key.cpp22 keymaster_error_t KeymasterPassthroughKeyFactory::LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
H A Dkeymaster1_legacy_support.cpp263 KeymasterKeyBlob&& key_material, const AuthorizationSet& additional_params, in LoadKey()
282 KeymasterKeyBlob&& key_material, const AuthorizationSet& additional_params, in LoadKey()
H A Drsa_keymaster1_key.cpp111 keymaster_error_t RsaKeymaster1KeyFactory::LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
H A Dec_keymaster1_key.cpp102 keymaster_error_t EcdsaKeymaster1KeyFactory::LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
/aosp12/system/keymaster/include/keymaster/legacy_support/
H A Dkeymaster1_engine.h64 KeymasterKeyBlob key_material; member
H A Dkeymaster_passthrough_key.h83 KeymasterPassthroughKey(KeymasterKeyBlob&& key_material, AuthorizationSet&& hw_enforced, in KeymasterPassthroughKey()
H A Dkeymaster1_legacy_support.h103 keymaster_error_t LoadKey(KeymasterKeyBlob&& key_material, in LoadKey()
/aosp12/packages/modules/adb/pairing_auth/
H A Daes_128_gcm.cpp35 Aes128Gcm::Aes128Gcm(const uint8_t* key_material, size_t key_material_len) { in Aes128Gcm()

12