diff options
author | tb <> | 2018-08-29 18:59:22 +0000 |
---|---|---|
committer | tb <> | 2018-08-29 18:59:22 +0000 |
commit | 015eb452e33342b6d05d2768632e773e0e6a9466 (patch) | |
tree | b700dcd42718f4996695e517ff819e8ddc9ea407 /src | |
parent | 171440b2550f360005baa7e9a4c420cbe4acf0ff (diff) | |
download | openbsd-015eb452e33342b6d05d2768632e773e0e6a9466.tar.gz openbsd-015eb452e33342b6d05d2768632e773e0e6a9466.tar.bz2 openbsd-015eb452e33342b6d05d2768632e773e0e6a9466.zip |
typo
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go index d8da1ddf6e..5e61ebb30b 100644 --- a/src/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/src/regress/lib/libcrypto/wycheproof/wycheproof.go | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: wycheproof.go,v 1.32 2018/08/29 18:58:46 tb Exp $ */ | 1 | /* $OpenBSD: wycheproof.go,v 1.33 2018/08/29 18:59:22 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> |
@@ -487,7 +487,7 @@ func checkAesCcm(ctx *C.EVP_CIPHER_CTX, doEncrypt int, key []byte, keyLen int, i | |||
487 | 487 | ||
488 | success := true | 488 | success := true |
489 | if !bytes.Equal(cipherOut, out) { | 489 | if !bytes.Equal(cipherOut, out) { |
490 | fmt.Printf("FAIL: Test case %d (%q) [%v] - expected and computed output do not match. Result.%v\n", wt.TCID, wt.Comment, action, wt.Result) | 490 | fmt.Printf("FAIL: Test case %d (%q) [%v] - expected and computed output do not match. Result: %v\n", wt.TCID, wt.Comment, action, wt.Result) |
491 | success = false | 491 | success = false |
492 | } | 492 | } |
493 | return success | 493 | return success |