Internal change PiperOrigin-RevId: 525424102
diff --git a/quiche/blind_sign_auth/anonymous_tokens/cpp/testing/utils.cc b/quiche/blind_sign_auth/anonymous_tokens/cpp/testing/utils.cc index 75a12ed..63fd304 100644 --- a/quiche/blind_sign_auth/anonymous_tokens/cpp/testing/utils.cc +++ b/quiche/blind_sign_auth/anonymous_tokens/cpp/testing/utils.cc
@@ -352,7 +352,7 @@ absl::StatusOr<std::pair<RSAPublicKey, RSAPrivateKey>> GetStrongRsaKeys2048() { std::string path = absl::StrCat(quiche::test::QuicheGetCommonSourcePath(), - "/anonymous_tokens/testing/data/strong_rsa_modulus2048_example.binarypb"); + "/anonymous_tokens/testdata/strong_rsa_modulus2048_example.binarypb"); ANON_TOKENS_ASSIGN_OR_RETURN(auto key_pair, ParseRsaKeysFromFile(path)); return std::make_pair(std::move(key_pair.first), std::move(key_pair.second)); } @@ -360,21 +360,21 @@ absl::StatusOr<std::pair<RSAPublicKey, RSAPrivateKey>> GetAnotherStrongRsaKeys2048() { std::string path = absl::StrCat(quiche::test::QuicheGetCommonSourcePath(), - "/anonymous_tokens/testing/data/strong_rsa_modulus2048_example_2.binarypb"); + "/anonymous_tokens/testdata/strong_rsa_modulus2048_example_2.binarypb"); ANON_TOKENS_ASSIGN_OR_RETURN(auto key_pair, ParseRsaKeysFromFile(path)); return std::make_pair(std::move(key_pair.first), std::move(key_pair.second)); } absl::StatusOr<std::pair<RSAPublicKey, RSAPrivateKey>> GetStrongRsaKeys3072() { std::string path = absl::StrCat(quiche::test::QuicheGetCommonSourcePath(), - "/anonymous_tokens/testing/data/strong_rsa_modulus3072_example.binarypb"); + "/anonymous_tokens/testdata/strong_rsa_modulus3072_example.binarypb"); ANON_TOKENS_ASSIGN_OR_RETURN(auto key_pair, ParseRsaKeysFromFile(path)); return std::make_pair(std::move(key_pair.first), std::move(key_pair.second)); } absl::StatusOr<std::pair<RSAPublicKey, RSAPrivateKey>> GetStrongRsaKeys4096() { std::string path = absl::StrCat(quiche::test::QuicheGetCommonSourcePath(), - "/anonymous_tokens/testing/data/strong_rsa_modulus4096_example.binarypb"); + "/anonymous_tokens/testdata/strong_rsa_modulus4096_example.binarypb"); ANON_TOKENS_ASSIGN_OR_RETURN(auto key_pair, ParseRsaKeysFromFile(path)); return std::make_pair(std::move(key_pair.first), std::move(key_pair.second)); }
diff --git a/quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus2048_example.binarypb b/quiche/common/anonymous_tokens/testdata/strong_rsa_modulus2048_example.binarypb similarity index 100% rename from quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus2048_example.binarypb rename to quiche/common/anonymous_tokens/testdata/strong_rsa_modulus2048_example.binarypb Binary files differ
diff --git a/quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus2048_example_2.binarypb b/quiche/common/anonymous_tokens/testdata/strong_rsa_modulus2048_example_2.binarypb similarity index 100% rename from quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus2048_example_2.binarypb rename to quiche/common/anonymous_tokens/testdata/strong_rsa_modulus2048_example_2.binarypb Binary files differ
diff --git a/quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus3072_example.binarypb b/quiche/common/anonymous_tokens/testdata/strong_rsa_modulus3072_example.binarypb similarity index 100% rename from quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus3072_example.binarypb rename to quiche/common/anonymous_tokens/testdata/strong_rsa_modulus3072_example.binarypb Binary files differ
diff --git a/quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus4096_example.binarypb b/quiche/common/anonymous_tokens/testdata/strong_rsa_modulus4096_example.binarypb similarity index 100% rename from quiche/common/anonymous_tokens/testing/data/strong_rsa_modulus4096_example.binarypb rename to quiche/common/anonymous_tokens/testdata/strong_rsa_modulus4096_example.binarypb Binary files differ