From 3eac8b770859748b71e0a739dcf35def4c2fd2ab Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Mon, 14 Jan 2019 13:50:02 -0800 Subject: [PATCH] Ignore new fields in forthcoming Wycheproof tests. Change-Id: I95dd20bb71c18cecd4cae72bcdbd708ee5e92e77 Reviewed-on: https://boringssl-review.googlesource.com/c/34284 Commit-Queue: Adam Langley Commit-Queue: David Benjamin Reviewed-by: David Benjamin --- crypto/evp/evp_test.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/crypto/evp/evp_test.cc b/crypto/evp/evp_test.cc index 70d016ad..6571c302 100644 --- a/crypto/evp/evp_test.cc +++ b/crypto/evp/evp_test.cc @@ -432,9 +432,19 @@ static void RunWycheproofTest(const char *path) { t->IgnoreInstruction("keysize"); t->IgnoreInstruction("n"); t->IgnoreAttribute("padding"); + t->IgnoreInstruction("keyJwk.alg"); + t->IgnoreInstruction("keyJwk.e"); + t->IgnoreInstruction("keyJwk.kid"); + t->IgnoreInstruction("keyJwk.kty"); + t->IgnoreInstruction("keyJwk.n"); // Extra EdDSA fields. t->IgnoreInstruction("key.pk"); t->IgnoreInstruction("key.sk"); + t->IgnoreInstruction("jwk.crv"); + t->IgnoreInstruction("jwk.d"); + t->IgnoreInstruction("jwk.kid"); + t->IgnoreInstruction("jwk.kty"); + t->IgnoreInstruction("jwk.x"); // Extra DSA fields. t->IgnoreInstruction("key.g"); t->IgnoreInstruction("key.p");