Home
last modified time | relevance | path

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

/system/tpm/trunks/
Dtpm_state_test.cc331 constexpr TPM_ALG_ID kAlgorithm = 0x39; in TEST_F() local
334 EXPECT_FALSE(tpm_state.GetAlgorithmProperties(kAlgorithm, nullptr)); in TEST_F()
336 EXPECT_FALSE(tpm_state.GetAlgorithmProperties(kAlgorithm, &value)); in TEST_F()
338 fake_algorithm_properties_[kAlgorithm] = 1234; in TEST_F()
341 EXPECT_TRUE(tpm_state2.GetAlgorithmProperties(kAlgorithm, nullptr)); in TEST_F()
342 EXPECT_TRUE(tpm_state2.GetAlgorithmProperties(kAlgorithm, &value)); in TEST_F()
343 EXPECT_EQ(value, fake_algorithm_properties_[kAlgorithm]); in TEST_F()