Home
last modified time | relevance | path

Searched refs:keyType (Results 1 – 5 of 5) sorted by relevance

/system/security/keystore/
Dkeystore_utils.cpp67 void add_legacy_key_authorizations(int keyType, keystore::AuthorizationSet* params) { in add_legacy_key_authorizations() argument
74 if (keyType == EVP_PKEY_RSA) { in add_legacy_key_authorizations()
Dkeystore_utils.h33 void add_legacy_key_authorizations(int keyType, keystore::AuthorizationSet* params);
DKeyStore.cpp341 bool KeyStore::isHardwareBacked(const android::String16& keyType) const { in isHardwareBacked()
351 if (keyType == kRsaKeyType) return true; // All versions support RSA in isHardwareBacked()
352 return keyType == kEcKeyType && version.supportsEc; in isHardwareBacked()
DKeyStore.h134 bool isHardwareBacked(const android::String16& keyType) const;
Dkey_store_service.cpp588 Status KeyStoreService::is_hardware_backed(const String16& keyType, int32_t* aidl_return) { in is_hardware_backed() argument
590 *aidl_return = static_cast<int32_t>(mKeyStore->isHardwareBacked(keyType) ? 1 : 0); in is_hardware_backed()