Rename third_party/wycheproof to satisfy a bureaucrat.
Make it clear this is not a pristine full copy of all of Wycheproof as a
library.
Change-Id: I1aa5253a1d7c696e69b2e8d7897924f15303d9ac
Reviewed-on: https://boringssl-review.googlesource.com/28188
Commit-Queue: David Benjamin <davidben@google.com>
Commit-Queue: Martin Kreichgauer <martinkr@google.com>
Reviewed-by: Martin Kreichgauer <martinkr@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
diff --git a/crypto/cipher_extra/aead_test.cc b/crypto/cipher_extra/aead_test.cc
index c9d0e9a..d873605 100644
--- a/crypto/cipher_extra/aead_test.cc
+++ b/crypto/cipher_extra/aead_test.cc
@@ -765,7 +765,8 @@
}
TEST(AEADTest, WycheproofAESGCMSIV) {
- FileTestGTest("third_party/wycheproof/aes_gcm_siv_test.txt", [](FileTest *t) {
+ FileTestGTest("third_party/wycheproof_testvectors/aes_gcm_siv_test.txt",
+ [](FileTest *t) {
std::string key_size_str;
ASSERT_TRUE(t->GetInstruction(&key_size_str, "keySize"));
const EVP_AEAD *aead;
@@ -785,7 +786,8 @@
}
TEST(AEADTest, WycheproofAESGCM) {
- FileTestGTest("third_party/wycheproof/aes_gcm_test.txt", [](FileTest *t) {
+ FileTestGTest("third_party/wycheproof_testvectors/aes_gcm_test.txt",
+ [](FileTest *t) {
std::string key_size_str;
ASSERT_TRUE(t->GetInstruction(&key_size_str, "keySize"));
const EVP_AEAD *aead;
@@ -809,7 +811,7 @@
}
TEST(AEADTest, WycheproofChaCha20Poly1305) {
- FileTestGTest("third_party/wycheproof/chacha20_poly1305_test.txt",
+ FileTestGTest("third_party/wycheproof_testvectors/chacha20_poly1305_test.txt",
[](FileTest *t) {
t->IgnoreInstruction("keySize");
RunWycheproofTestCase(t, EVP_aead_chacha20_poly1305());
diff --git a/crypto/cipher_extra/cipher_test.cc b/crypto/cipher_extra/cipher_test.cc
index 3605926..4083fde 100644
--- a/crypto/cipher_extra/cipher_test.cc
+++ b/crypto/cipher_extra/cipher_test.cc
@@ -304,7 +304,7 @@
}
TEST(CipherTest, WycheproofAESCBC) {
- FileTestGTest("third_party/wycheproof/aes_cbc_pkcs5_test.txt",
+ FileTestGTest("third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.txt",
[](FileTest *t) {
t->IgnoreInstruction("type");
t->IgnoreInstruction("ivSize");
diff --git a/crypto/curve25519/x25519_test.cc b/crypto/curve25519/x25519_test.cc
index 2b50891..9578dd0 100644
--- a/crypto/curve25519/x25519_test.cc
+++ b/crypto/curve25519/x25519_test.cc
@@ -127,7 +127,8 @@
}
TEST(X25519Test, Wycheproof) {
- FileTestGTest("third_party/wycheproof/x25519_test.txt", [](FileTest *t) {
+ FileTestGTest("third_party/wycheproof_testvectors/x25519_test.txt",
+ [](FileTest *t) {
t->IgnoreInstruction("curve");
t->IgnoreAttribute("curve");
diff --git a/crypto/ecdh/ecdh_test.cc b/crypto/ecdh/ecdh_test.cc
index 05dad00..60b45a1 100644
--- a/crypto/ecdh/ecdh_test.cc
+++ b/crypto/ecdh/ecdh_test.cc
@@ -119,7 +119,8 @@
}
TEST(ECDHTest, Wycheproof) {
- FileTestGTest("third_party/wycheproof/ecdh_test.txt", [](FileTest *t) {
+ FileTestGTest("third_party/wycheproof_testvectors/ecdh_test.txt",
+ [](FileTest *t) {
t->IgnoreInstruction("curve"); // This is redundant with the per-test one.
bssl::UniquePtr<EC_GROUP> group = GetWycheproofCurve(t, "curve", false);
diff --git a/crypto/evp/evp_test.cc b/crypto/evp/evp_test.cc
index 9d769a6..c9ab2d2 100644
--- a/crypto/evp/evp_test.cc
+++ b/crypto/evp/evp_test.cc
@@ -483,13 +483,20 @@
}
TEST(EVPTest, Wycheproof) {
- RunWycheproofTest("third_party/wycheproof/dsa_test.txt");
- RunWycheproofTest("third_party/wycheproof/ecdsa_secp224r1_sha224_test.txt");
- RunWycheproofTest("third_party/wycheproof/ecdsa_secp224r1_sha256_test.txt");
- RunWycheproofTest("third_party/wycheproof/ecdsa_secp256r1_sha256_test.txt");
- RunWycheproofTest("third_party/wycheproof/ecdsa_secp384r1_sha384_test.txt");
- RunWycheproofTest("third_party/wycheproof/ecdsa_secp384r1_sha512_test.txt");
- RunWycheproofTest("third_party/wycheproof/ecdsa_secp521r1_sha512_test.txt");
- RunWycheproofTest("third_party/wycheproof/eddsa_test.txt");
- RunWycheproofTest("third_party/wycheproof/rsa_signature_test.txt");
+ RunWycheproofTest("third_party/wycheproof_testvectors/dsa_test.txt");
+ RunWycheproofTest(
+ "third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.txt");
+ RunWycheproofTest(
+ "third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.txt");
+ RunWycheproofTest(
+ "third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.txt");
+ RunWycheproofTest(
+ "third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.txt");
+ RunWycheproofTest(
+ "third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.txt");
+ RunWycheproofTest(
+ "third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.txt");
+ RunWycheproofTest("third_party/wycheproof_testvectors/eddsa_test.txt");
+ RunWycheproofTest(
+ "third_party/wycheproof_testvectors/rsa_signature_test.txt");
}
diff --git a/crypto/fipsmodule/aes/aes_test.cc b/crypto/fipsmodule/aes/aes_test.cc
index 1f8cbc6..ccec597 100644
--- a/crypto/fipsmodule/aes/aes_test.cc
+++ b/crypto/fipsmodule/aes/aes_test.cc
@@ -133,7 +133,8 @@
}
TEST(AESTest, WycheproofKeyWrap) {
- FileTestGTest("third_party/wycheproof/kw_test.txt", [](FileTest *t) {
+ FileTestGTest("third_party/wycheproof_testvectors/kw_test.txt",
+ [](FileTest *t) {
std::string key_size;
ASSERT_TRUE(t->GetInstruction(&key_size, "keySize"));
std::vector<uint8_t> ct, key, msg;
diff --git a/sources.cmake b/sources.cmake
index 9e100a9..8c28151 100644
--- a/sources.cmake
+++ b/sources.cmake
@@ -59,20 +59,20 @@
crypto/x509/some_names1.pem
crypto/x509/some_names2.pem
crypto/x509/some_names3.pem
- third_party/wycheproof/aes_cbc_pkcs5_test.txt
- third_party/wycheproof/aes_gcm_siv_test.txt
- third_party/wycheproof/aes_gcm_test.txt
- third_party/wycheproof/chacha20_poly1305_test.txt
- third_party/wycheproof/dsa_test.txt
- third_party/wycheproof/ecdh_test.txt
- third_party/wycheproof/ecdsa_secp224r1_sha224_test.txt
- third_party/wycheproof/ecdsa_secp224r1_sha256_test.txt
- third_party/wycheproof/ecdsa_secp256r1_sha256_test.txt
- third_party/wycheproof/ecdsa_secp384r1_sha384_test.txt
- third_party/wycheproof/ecdsa_secp384r1_sha512_test.txt
- third_party/wycheproof/ecdsa_secp521r1_sha512_test.txt
- third_party/wycheproof/eddsa_test.txt
- third_party/wycheproof/kw_test.txt
- third_party/wycheproof/rsa_signature_test.txt
- third_party/wycheproof/x25519_test.txt
+ third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.txt
+ third_party/wycheproof_testvectors/aes_gcm_siv_test.txt
+ third_party/wycheproof_testvectors/aes_gcm_test.txt
+ third_party/wycheproof_testvectors/chacha20_poly1305_test.txt
+ third_party/wycheproof_testvectors/dsa_test.txt
+ third_party/wycheproof_testvectors/ecdh_test.txt
+ third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.txt
+ third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.txt
+ third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.txt
+ third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.txt
+ third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.txt
+ third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.txt
+ third_party/wycheproof_testvectors/eddsa_test.txt
+ third_party/wycheproof_testvectors/kw_test.txt
+ third_party/wycheproof_testvectors/rsa_signature_test.txt
+ third_party/wycheproof_testvectors/x25519_test.txt
)
diff --git a/third_party/wycheproof/LICENSE b/third_party/wycheproof_testvectors/LICENSE
similarity index 100%
rename from third_party/wycheproof/LICENSE
rename to third_party/wycheproof_testvectors/LICENSE
diff --git a/third_party/wycheproof/METADATA b/third_party/wycheproof_testvectors/METADATA
similarity index 83%
rename from third_party/wycheproof/METADATA
rename to third_party/wycheproof_testvectors/METADATA
index 19042a7..0e586e8 100644
--- a/third_party/wycheproof/METADATA
+++ b/third_party/wycheproof_testvectors/METADATA
@@ -1,5 +1,6 @@
name: "Project Wycheproof"
-description: "Project Wycheproof tests crypto libraries against known attacks."
+description: "Project Wycheproof tests crypto libraries against known attacks. "
+"This is a copy of only the test vectors, adapted for BoringSSL."
third_party {
url {
diff --git a/third_party/wycheproof/aes_cbc_pkcs5_test.json b/third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.json
similarity index 100%
rename from third_party/wycheproof/aes_cbc_pkcs5_test.json
rename to third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.json
diff --git a/third_party/wycheproof/aes_cbc_pkcs5_test.txt b/third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.txt
similarity index 100%
rename from third_party/wycheproof/aes_cbc_pkcs5_test.txt
rename to third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.txt
diff --git a/third_party/wycheproof/aes_cmac_test.json b/third_party/wycheproof_testvectors/aes_cmac_test.json
similarity index 100%
rename from third_party/wycheproof/aes_cmac_test.json
rename to third_party/wycheproof_testvectors/aes_cmac_test.json
diff --git a/third_party/wycheproof/aes_eax_test.json b/third_party/wycheproof_testvectors/aes_eax_test.json
similarity index 100%
rename from third_party/wycheproof/aes_eax_test.json
rename to third_party/wycheproof_testvectors/aes_eax_test.json
diff --git a/third_party/wycheproof/aes_gcm_siv_test.json b/third_party/wycheproof_testvectors/aes_gcm_siv_test.json
similarity index 100%
rename from third_party/wycheproof/aes_gcm_siv_test.json
rename to third_party/wycheproof_testvectors/aes_gcm_siv_test.json
diff --git a/third_party/wycheproof/aes_gcm_siv_test.txt b/third_party/wycheproof_testvectors/aes_gcm_siv_test.txt
similarity index 100%
rename from third_party/wycheproof/aes_gcm_siv_test.txt
rename to third_party/wycheproof_testvectors/aes_gcm_siv_test.txt
diff --git a/third_party/wycheproof/aes_gcm_test.json b/third_party/wycheproof_testvectors/aes_gcm_test.json
similarity index 100%
rename from third_party/wycheproof/aes_gcm_test.json
rename to third_party/wycheproof_testvectors/aes_gcm_test.json
diff --git a/third_party/wycheproof/aes_gcm_test.txt b/third_party/wycheproof_testvectors/aes_gcm_test.txt
similarity index 100%
rename from third_party/wycheproof/aes_gcm_test.txt
rename to third_party/wycheproof_testvectors/aes_gcm_test.txt
diff --git a/third_party/wycheproof/aes_siv_cmac_test.json b/third_party/wycheproof_testvectors/aes_siv_cmac_test.json
similarity index 100%
rename from third_party/wycheproof/aes_siv_cmac_test.json
rename to third_party/wycheproof_testvectors/aes_siv_cmac_test.json
diff --git a/third_party/wycheproof/chacha20_poly1305_test.json b/third_party/wycheproof_testvectors/chacha20_poly1305_test.json
similarity index 100%
rename from third_party/wycheproof/chacha20_poly1305_test.json
rename to third_party/wycheproof_testvectors/chacha20_poly1305_test.json
diff --git a/third_party/wycheproof/chacha20_poly1305_test.txt b/third_party/wycheproof_testvectors/chacha20_poly1305_test.txt
similarity index 100%
rename from third_party/wycheproof/chacha20_poly1305_test.txt
rename to third_party/wycheproof_testvectors/chacha20_poly1305_test.txt
diff --git a/third_party/wycheproof/convert_wycheproof.go b/third_party/wycheproof_testvectors/convert_wycheproof.go
similarity index 100%
rename from third_party/wycheproof/convert_wycheproof.go
rename to third_party/wycheproof_testvectors/convert_wycheproof.go
diff --git a/third_party/wycheproof/dsa_test.json b/third_party/wycheproof_testvectors/dsa_test.json
similarity index 100%
rename from third_party/wycheproof/dsa_test.json
rename to third_party/wycheproof_testvectors/dsa_test.json
diff --git a/third_party/wycheproof/dsa_test.txt b/third_party/wycheproof_testvectors/dsa_test.txt
similarity index 100%
rename from third_party/wycheproof/dsa_test.txt
rename to third_party/wycheproof_testvectors/dsa_test.txt
diff --git a/third_party/wycheproof/ecdh_test.json b/third_party/wycheproof_testvectors/ecdh_test.json
similarity index 100%
rename from third_party/wycheproof/ecdh_test.json
rename to third_party/wycheproof_testvectors/ecdh_test.json
diff --git a/third_party/wycheproof/ecdh_test.txt b/third_party/wycheproof_testvectors/ecdh_test.txt
similarity index 100%
rename from third_party/wycheproof/ecdh_test.txt
rename to third_party/wycheproof_testvectors/ecdh_test.txt
diff --git a/third_party/wycheproof/ecdh_webcrypto_test.json b/third_party/wycheproof_testvectors/ecdh_webcrypto_test.json
similarity index 100%
rename from third_party/wycheproof/ecdh_webcrypto_test.json
rename to third_party/wycheproof_testvectors/ecdh_webcrypto_test.json
diff --git a/third_party/wycheproof/ecdsa_brainpoolP224r1_sha224_test.json b/third_party/wycheproof_testvectors/ecdsa_brainpoolP224r1_sha224_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_brainpoolP224r1_sha224_test.json
rename to third_party/wycheproof_testvectors/ecdsa_brainpoolP224r1_sha224_test.json
diff --git a/third_party/wycheproof/ecdsa_brainpoolP256r1_sha256_test.json b/third_party/wycheproof_testvectors/ecdsa_brainpoolP256r1_sha256_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_brainpoolP256r1_sha256_test.json
rename to third_party/wycheproof_testvectors/ecdsa_brainpoolP256r1_sha256_test.json
diff --git a/third_party/wycheproof/ecdsa_brainpoolP320r1_sha384_test.json b/third_party/wycheproof_testvectors/ecdsa_brainpoolP320r1_sha384_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_brainpoolP320r1_sha384_test.json
rename to third_party/wycheproof_testvectors/ecdsa_brainpoolP320r1_sha384_test.json
diff --git a/third_party/wycheproof/ecdsa_brainpoolP384r1_sha384_test.json b/third_party/wycheproof_testvectors/ecdsa_brainpoolP384r1_sha384_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_brainpoolP384r1_sha384_test.json
rename to third_party/wycheproof_testvectors/ecdsa_brainpoolP384r1_sha384_test.json
diff --git a/third_party/wycheproof/ecdsa_brainpoolP512r1_sha512_test.json b/third_party/wycheproof_testvectors/ecdsa_brainpoolP512r1_sha512_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_brainpoolP512r1_sha512_test.json
rename to third_party/wycheproof_testvectors/ecdsa_brainpoolP512r1_sha512_test.json
diff --git a/third_party/wycheproof/ecdsa_secp224r1_sha224_test.json b/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp224r1_sha224_test.json
rename to third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.json
diff --git a/third_party/wycheproof/ecdsa_secp224r1_sha224_test.txt b/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.txt
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp224r1_sha224_test.txt
rename to third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.txt
diff --git a/third_party/wycheproof/ecdsa_secp224r1_sha256_test.json b/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp224r1_sha256_test.json
rename to third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.json
diff --git a/third_party/wycheproof/ecdsa_secp224r1_sha256_test.txt b/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.txt
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp224r1_sha256_test.txt
rename to third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.txt
diff --git a/third_party/wycheproof/ecdsa_secp256k1_sha256_test.json b/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha256_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp256k1_sha256_test.json
rename to third_party/wycheproof_testvectors/ecdsa_secp256k1_sha256_test.json
diff --git a/third_party/wycheproof/ecdsa_secp256r1_sha256_test.json b/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp256r1_sha256_test.json
rename to third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.json
diff --git a/third_party/wycheproof/ecdsa_secp256r1_sha256_test.txt b/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.txt
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp256r1_sha256_test.txt
rename to third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.txt
diff --git a/third_party/wycheproof/ecdsa_secp384r1_sha384_test.json b/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp384r1_sha384_test.json
rename to third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.json
diff --git a/third_party/wycheproof/ecdsa_secp384r1_sha384_test.txt b/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.txt
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp384r1_sha384_test.txt
rename to third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.txt
diff --git a/third_party/wycheproof/ecdsa_secp384r1_sha512_test.json b/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp384r1_sha512_test.json
rename to third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.json
diff --git a/third_party/wycheproof/ecdsa_secp384r1_sha512_test.txt b/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.txt
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp384r1_sha512_test.txt
rename to third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.txt
diff --git a/third_party/wycheproof/ecdsa_secp521r1_sha512_test.json b/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp521r1_sha512_test.json
rename to third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.json
diff --git a/third_party/wycheproof/ecdsa_secp521r1_sha512_test.txt b/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.txt
similarity index 100%
rename from third_party/wycheproof/ecdsa_secp521r1_sha512_test.txt
rename to third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.txt
diff --git a/third_party/wycheproof/ecdsa_test.json b/third_party/wycheproof_testvectors/ecdsa_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_test.json
rename to third_party/wycheproof_testvectors/ecdsa_test.json
diff --git a/third_party/wycheproof/ecdsa_webcrypto_test.json b/third_party/wycheproof_testvectors/ecdsa_webcrypto_test.json
similarity index 100%
rename from third_party/wycheproof/ecdsa_webcrypto_test.json
rename to third_party/wycheproof_testvectors/ecdsa_webcrypto_test.json
diff --git a/third_party/wycheproof/eddsa_test.json b/third_party/wycheproof_testvectors/eddsa_test.json
similarity index 100%
rename from third_party/wycheproof/eddsa_test.json
rename to third_party/wycheproof_testvectors/eddsa_test.json
diff --git a/third_party/wycheproof/eddsa_test.txt b/third_party/wycheproof_testvectors/eddsa_test.txt
similarity index 100%
rename from third_party/wycheproof/eddsa_test.txt
rename to third_party/wycheproof_testvectors/eddsa_test.txt
diff --git a/third_party/wycheproof/kw_test.json b/third_party/wycheproof_testvectors/kw_test.json
similarity index 100%
rename from third_party/wycheproof/kw_test.json
rename to third_party/wycheproof_testvectors/kw_test.json
diff --git a/third_party/wycheproof/kw_test.txt b/third_party/wycheproof_testvectors/kw_test.txt
similarity index 100%
rename from third_party/wycheproof/kw_test.txt
rename to third_party/wycheproof_testvectors/kw_test.txt
diff --git a/third_party/wycheproof/kwp_test.json b/third_party/wycheproof_testvectors/kwp_test.json
similarity index 100%
rename from third_party/wycheproof/kwp_test.json
rename to third_party/wycheproof_testvectors/kwp_test.json
diff --git a/third_party/wycheproof/rsa_signature_test.json b/third_party/wycheproof_testvectors/rsa_signature_test.json
similarity index 100%
rename from third_party/wycheproof/rsa_signature_test.json
rename to third_party/wycheproof_testvectors/rsa_signature_test.json
diff --git a/third_party/wycheproof/rsa_signature_test.txt b/third_party/wycheproof_testvectors/rsa_signature_test.txt
similarity index 100%
rename from third_party/wycheproof/rsa_signature_test.txt
rename to third_party/wycheproof_testvectors/rsa_signature_test.txt
diff --git a/third_party/wycheproof/x25519_test.json b/third_party/wycheproof_testvectors/x25519_test.json
similarity index 100%
rename from third_party/wycheproof/x25519_test.json
rename to third_party/wycheproof_testvectors/x25519_test.json
diff --git a/third_party/wycheproof/x25519_test.txt b/third_party/wycheproof_testvectors/x25519_test.txt
similarity index 100%
rename from third_party/wycheproof/x25519_test.txt
rename to third_party/wycheproof_testvectors/x25519_test.txt