summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2018-09-16 19:22:50 +0000
committertb <>2018-09-16 19:22:50 +0000
commit50118ba3d8e88639ce06332b3dac7ac2a8c2aed2 (patch)
tree41c9dd669743eb425fc16df6248019ae5f583294 /src
parent9b8f3a492393c50d782986ef50f91678d8b39060 (diff)
downloadopenbsd-50118ba3d8e88639ce06332b3dac7ac2a8c2aed2.tar.gz
openbsd-50118ba3d8e88639ce06332b3dac7ac2a8c2aed2.tar.bz2
openbsd-50118ba3d8e88639ce06332b3dac7ac2a8c2aed2.zip
add missing default case to switch
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/wycheproof/wycheproof.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/wycheproof/wycheproof.go b/src/regress/lib/libcrypto/wycheproof/wycheproof.go
index 44ee2dec3f..61ad17046e 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.55 2018/09/16 18:44:33 tb Exp $ */ 1/* $OpenBSD: wycheproof.go,v 1.56 2018/09/16 19:22:50 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>
@@ -689,6 +689,8 @@ func runAesAeadTestGroup(algorithm string, wtg *wycheproofTestGroupAead) bool {
689 fmt.Printf("INFO: Skipping tests with invalid key size %d\n", wtg.KeySize) 689 fmt.Printf("INFO: Skipping tests with invalid key size %d\n", wtg.KeySize)
690 return true 690 return true
691 } 691 }
692 default:
693 log.Fatalf("runAesAeadTestGroup() - unhandled algorithm: %v", algorithm)
692 } 694 }
693 695
694 ctx := C.EVP_CIPHER_CTX_new() 696 ctx := C.EVP_CIPHER_CTX_new()