diff options
author | 2018-10-04 18:37:07 +0000 | |
---|---|---|
committer | 2018-10-04 18:37:07 +0000 | |
commit | 14796dfb680cf2bf1c419835b743cc0f72b53f3d (patch) | |
tree | 75544450fadcb4692d85273bb5a3d3666e723956 | |
parent | While we don't explicitly support curve secp256r1, we can run 1250 tests (diff) | |
download | wireguard-openbsd-14796dfb680cf2bf1c419835b743cc0f72b53f3d.tar.xz wireguard-openbsd-14796dfb680cf2bf1c419835b743cc0f72b53f3d.zip |
Better refer to RFC 8422 which obsoletes RFC 4492.
-rw-r--r-- | regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go index 92313f4afcc..7f693d04b0c 100644 --- a/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/regress/lib/libcrypto/wycheproof/wycheproof.go @@ -1,4 +1,4 @@ -/* $OpenBSD: wycheproof.go,v 1.68 2018/10/04 18:25:50 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.69 2018/10/04 18:37:07 tb Exp $ */ /* * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> @@ -274,7 +274,7 @@ var nids = map[string]int{ "brainpoolP512t1": C.NID_brainpoolP512t1, "secp224r1": C.NID_secp224r1, "secp256k1": C.NID_secp256k1, - "secp256r1": C.NID_X9_62_prime256v1, // RFC 4492, Table 6, p.32 + "secp256r1": C.NID_X9_62_prime256v1, // RFC 8422, Table 4, p.32 "secp384r1": C.NID_secp384r1, "secp521r1": C.NID_secp521r1, "SHA-1": C.NID_sha1, |