diff options
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index 286bbe5965..9ae9324b75 100644 --- a/src/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/src/regress/lib/libcrypto/wycheproof/wycheproof.go | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: wycheproof.go,v 1.156 2023/11/07 16:54:43 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.157 2023/11/07 16:56:12 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018,2023 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2018,2019,2022 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018,2019,2022,2023 Theo Buehler <tb@openbsd.org> |
5 | * | 5 | * |
6 | * Permission to use, copy, modify, and distribute this software for any | 6 | * Permission to use, copy, modify, and distribute this software for any |
7 | * purpose with or without fee is hereby granted, provided that the above | 7 | * purpose with or without fee is hereby granted, provided that the above |
@@ -1185,7 +1185,6 @@ func runChaCha20Poly1305Test(algorithm string, wt *wycheproofTestAead) bool { | |||
1185 | } | 1185 | } |
1186 | 1186 | ||
1187 | key, keyLen := mustDecodeHexString(wt.Key, "key") | 1187 | key, keyLen := mustDecodeHexString(wt.Key, "key") |
1188 | ct, ctLen := mustDecodeHexString(wt.CT, "CT") | ||
1189 | iv, ivLen := mustDecodeHexString(wt.IV, "iv") | 1188 | iv, ivLen := mustDecodeHexString(wt.IV, "iv") |
1190 | aad, aadLen := mustDecodeHexString(wt.AAD, "aad") | 1189 | aad, aadLen := mustDecodeHexString(wt.AAD, "aad") |
1191 | msg, msgLen := mustDecodeHexString(wt.Msg, "msg") | 1190 | msg, msgLen := mustDecodeHexString(wt.Msg, "msg") |