summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-11-07 16:56:12 +0000
committertb <>2023-11-07 16:56:12 +0000
commitb535eb25dc8618b0d82ce8237fc263e93a49190e (patch)
treea79b689175126f2af1b5aacb5b1ea9cb9c1f29ad
parentc529705608c57be69a93f13f72be233f97baa0b3 (diff)
downloadopenbsd-b535eb25dc8618b0d82ce8237fc263e93a49190e.tar.gz
openbsd-b535eb25dc8618b0d82ce8237fc263e93a49190e.tar.bz2
openbsd-b535eb25dc8618b0d82ce8237fc263e93a49190e.zip
Drop a useless line and bump copyright years
-rw-r--r--src/regress/lib/libcrypto/wycheproof/wycheproof.go7
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")