Home
last modified time | relevance | path

Searched refs:EncryptForUnbind (Results 1 – 6 of 6) sorted by relevance

/system/tpm/attestation/common/
Dcrypto_utility_impl_test.cc195 TEST_F(CryptoUtilityImplTest, EncryptForUnbind) { in TEST_F() argument
202 crypto_utility_->EncryptForUnbind(public_key_info, "input", &output)); in TEST_F()
208 EXPECT_FALSE(crypto_utility_->EncryptForUnbind("bad_key", "input", &output)); in TEST_F()
219 crypto_utility_->EncryptForUnbind(public_key_info, input, &output)); in TEST_F()
Dmock_crypto_utility.h61 MOCK_METHOD3(EncryptForUnbind,
Dcrypto_utility.h85 virtual bool EncryptForUnbind(const std::string& public_key,
Dcrypto_utility_impl.h59 bool EncryptForUnbind(const std::string& public_key,
Dcrypto_utility_impl.cc269 bool CryptoUtilityImpl::EncryptForUnbind(const std::string& public_key, in EncryptForUnbind() function in attestation::CryptoUtilityImpl
/system/tpm/attestation/client/
Dmain.cc395 if (!crypto.EncryptForUnbind(key_info.public_key(), input, &output)) { in Encrypt2()