Searched refs:RsaKey (Results 1 – 9 of 9) sorted by relevance
/system/keymaster/km_openssl/ |
D | rsa_key.cpp | 26 bool RsaKey::EvpToInternal(const EVP_PKEY* pkey) { in EvpToInternal() 31 bool RsaKey::InternalToEvp(EVP_PKEY* pkey) const { in InternalToEvp() 35 bool RsaKey::SupportedMode(keymaster_purpose_t purpose, keymaster_padding_t padding) { in SupportedMode() 53 bool RsaKey::SupportedMode(keymaster_purpose_t purpose, keymaster_digest_t digest) { in SupportedMode()
|
D | rsa_key_factory.cpp | 82 UniquePtr<RSA, RsaKey::RSA_Delete> rsa_key(RSA_new()); in GenerateKey() 139 UniquePtr<RSA, RsaKey::RSA_Delete> rsa_key(EVP_PKEY_get1_RSA(pkey.get())); in UpdateImportKeyDescription() 177 key->reset(new (std::nothrow) RsaKey(move(hw_enforced), move(sw_enforced), this)); in CreateEmptyKey()
|
D | rsa_operation.cpp | 39 const RsaKey& rsa_key = static_cast<RsaKey&>(key); in GetRsaKey()
|
/system/keymaster/include/keymaster/km_openssl/ |
D | rsa_key.h | 26 class RsaKey : public AsymmetricKey { 28 RsaKey(AuthorizationSet&& hw_enforced, AuthorizationSet&& sw_enforced, in RsaKey() function 45 RsaKey(RSA* rsa, AuthorizationSet&& hw_enforced, AuthorizationSet&& sw_enforced, in RsaKey() function
|
/system/keymaster/include/keymaster/legacy_support/ |
D | rsa_keymaster0_key.h | 60 class RsaKeymaster0Key : public RsaKey { 65 : RsaKey(rsa_key, move(hw_enforced), move(sw_enforced), key_factory) {} in RsaKeymaster0Key()
|
D | rsa_keymaster1_key.h | 72 class RsaKeymaster1Key : public RsaKey { 77 : RsaKey(rsa_key, move(hw_enforced), move(sw_enforced), key_factory) {} in RsaKeymaster1Key()
|
/system/keymaster/ng/include/ |
D | authorization_set.h | 243 AuthorizationSetBuilder& RsaKey(uint32_t key_size, uint64_t public_exponent); 267 inline AuthorizationSetBuilder& AuthorizationSetBuilder::RsaKey(uint32_t key_size, in RsaKey() function 294 RsaKey(key_size, public_exponent); in RsaSigningKey() 300 RsaKey(key_size, public_exponent); in RsaEncryptionKey()
|
/system/keymaster/include/keymaster/ |
D | authorization_set.h | 515 AuthorizationSetBuilder& RsaKey(uint32_t key_size, uint64_t public_exponent); 556 inline AuthorizationSetBuilder& AuthorizationSetBuilder::RsaKey(uint32_t key_size, in RsaKey() function 588 RsaKey(key_size, public_exponent); in RsaSigningKey() 594 RsaKey(key_size, public_exponent); in RsaEncryptionKey()
|
/system/keymaster/tests/ |
D | android_keymaster_test.cpp | 628 ASSERT_EQ(KM_ERROR_OK, GenerateKey(AuthorizationSetBuilder().RsaKey(256, 3).SigningKey().Digest( in TEST_P()
|