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.cc200 TEST_F(CryptoUtilityImplTest, EncryptForUnbind) { in TEST_F() argument
206 EXPECT_TRUE(crypto_utility_->EncryptForUnbind(public_key_info, "input", in TEST_F()
213 EXPECT_FALSE(crypto_utility_->EncryptForUnbind("bad_key", "input", &output)); in TEST_F()
223 EXPECT_FALSE(crypto_utility_->EncryptForUnbind(public_key_info, input, in TEST_F()
Dmock_crypto_utility.h57 MOCK_METHOD3(EncryptForUnbind, bool(const std::string&,
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.cc270 bool CryptoUtilityImpl::EncryptForUnbind(const std::string& public_key, in EncryptForUnbind() function in attestation::CryptoUtilityImpl
/system/tpm/attestation/client/
Dmain.cc416 if (!crypto.EncryptForUnbind(key_info.public_key(), input, &output)) { in Encrypt2()