Searched refs:allowed_key_paths (Results 1 – 2 of 2) sorted by relevance
461 std::vector<std::string> allowed_key_paths; in TEST_F() local462 allowed_key_paths.push_back(rsa2048_public_key.value()); in TEST_F()463 allowed_key_paths.push_back(rsa4096_public_key.value()); in TEST_F()472 EXPECT_TRUE(ValidatePublicKeyBlob(expected_key_blob_2048, allowed_key_paths)); in TEST_F()473 EXPECT_TRUE(ValidatePublicKeyBlob(expected_key_blob_4096, allowed_key_paths)); in TEST_F()475 EXPECT_FALSE(ValidatePublicKeyBlob(expected_key_blob_8192, allowed_key_paths)); in TEST_F()476 EXPECT_FALSE(ValidatePublicKeyBlob("invalid_content", allowed_key_paths)); in TEST_F()477 EXPECT_FALSE(ValidatePublicKeyBlob("", allowed_key_paths)); in TEST_F()479 allowed_key_paths.push_back(rsa8192_public_key.value()); in TEST_F()480 EXPECT_TRUE(ValidatePublicKeyBlob(expected_key_blob_8192, allowed_key_paths)); in TEST_F()
315 const std::vector<std::string>& allowed_key_paths) { in ValidatePublicKeyBlob() argument321 for (const auto& path : allowed_key_paths) { in ValidatePublicKeyBlob()