Home
last modified time | relevance | path

Searched refs:registry_key (Results 1 – 11 of 11) sorted by relevance

/system/keymaster/include/keymaster/km_openssl/
Daes_key.h35 keymaster_algorithm_t registry_key() const { return KM_ALGORITHM_AES; } in registry_key() function
Dtriple_des_key.h32 keymaster_algorithm_t registry_key() const { return KM_ALGORITHM_TRIPLE_DES; } in registry_key() function
Decdsa_operation.h85 KeyType registry_key() const override { return KeyType(KM_ALGORITHM_EC, purpose()); } in registry_key() function
Drsa_operation.h187 KeyType registry_key() const override { return KeyType(KM_ALGORITHM_RSA, purpose()); } in registry_key() function
/system/keymaster/km_openssl/
Dhmac_operation.h56 virtual KeyType registry_key() const { return KeyType(KM_ALGORITHM_HMAC, purpose()); } in registry_key() function
Dblock_cipher_operation.h50 KeyType registry_key() const override { in registry_key() function
/system/keymaster/legacy_support/
Decdsa_keymaster1_operation.h108 KeyType registry_key() const override { return KeyType(KM_ALGORITHM_EC, purpose_); } in registry_key() function
Drsa_keymaster1_operation.h108 KeyType registry_key() const override { return KeyType(KM_ALGORITHM_RSA, purpose_); } in registry_key() function
Dkeymaster_passthrough_operation.h101 KeyType registry_key() const override { return key_type_; } in registry_key() function
/system/keymaster/include/keymaster/
Doperation.h52 virtual KeyType registry_key() const = 0;
/system/keymaster/android_keymaster/
Doperation.cpp68 KeyType key_type = registry_key(); in is_public_key_operation()