Searched refs:Decrypt (Results 1 – 10 of 10) sorted by relevance
/system/keymaster/include/keymaster/km_openssl/ |
D | kem.h | 47 virtual bool Decrypt(EC_KEY* private_key, const Buffer& encrypted_key, Buffer* output_key) = 0; 48 virtual bool Decrypt(EC_KEY* private_key, const uint8_t* encrypted_key,
|
D | ecies_kem.h | 47 bool Decrypt(EC_KEY* private_key, const Buffer& encrypted_key, Buffer* output_key) override; 48 bool Decrypt(EC_KEY* private_key, const uint8_t* encrypted_key, size_t encrypted_key_len,
|
/system/bt/btif/test/ |
D | btif_keystore_test.cc | 44 std::string decrypted_hash = btif_keystore_->Decrypt(encrypted_hash); in TEST_F() 61 std::string decrypted_hash = btif_keystore_->Decrypt(hash); in TEST_F()
|
/system/keymaster/km_openssl/ |
D | ecies_kem.cpp | 129 bool EciesKem::Decrypt(EC_KEY* private_key, const Buffer& encrypted_key, Buffer* output_key) { in Decrypt() function in keymaster::EciesKem 130 return Decrypt(private_key, encrypted_key.peek_read(), encrypted_key.available_read(), in Decrypt() 135 bool EciesKem::Decrypt(EC_KEY* private_key, const uint8_t* encrypted_key, size_t encrypted_key_len, in Decrypt() function in keymaster::EciesKem
|
/system/keymaster/tests/ |
D | key_blob_test.cpp | 72 keymaster_error_t Decrypt() { in Decrypt() function in keymaster::test::KeyBlobTest 151 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt()); in TEST_F() 168 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt()); in TEST_F() 185 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt()); in TEST_F() 222 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt()); in TEST_F() 245 ASSERT_EQ(KM_ERROR_INVALID_KEY_BLOB, Decrypt()); in TEST_F()
|
D | ecies_kem_test.cpp | 66 kem->Decrypt(key_exchange->private_key(), output_encrypted_key, &decrypted_clear_key)); in TEST()
|
/system/bt/btif/include/ |
D | btif_keystore.h | 60 std::string Decrypt(const std::string& input_filename);
|
/system/bt/btif/src/ |
D | btif_keystore.cc | 62 std::string BtifKeystore::Decrypt(const std::string& input) { in Decrypt() function in bluetooth::BtifKeystore
|
D | btif_config.cc | 683 return btif_keystore.Decrypt(encrypted_hash); in read_checksum_file()
|
/system/security/keystore/ |
D | keystore_cli_v2.cpp | 476 int Decrypt(const std::string& key_name, const std::string& input_filename, in Decrypt() function 670 return Decrypt(command_line->GetSwitchValueASCII("name"), in main()
|