diff options
author | tb <> | 2018-09-16 19:22:50 +0000 |
---|---|---|
committer | tb <> | 2018-09-16 19:22:50 +0000 |
commit | 6ae7e36ac660812622367c922c684b97052bae6d (patch) | |
tree | 41c9dd669743eb425fc16df6248019ae5f583294 /src | |
parent | 1ac3c351c765be5193fc47490fdc7331a720e22b (diff) | |
download | openbsd-6ae7e36ac660812622367c922c684b97052bae6d.tar.gz openbsd-6ae7e36ac660812622367c922c684b97052bae6d.tar.bz2 openbsd-6ae7e36ac660812622367c922c684b97052bae6d.zip |
add missing default case to switch
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/wycheproof/wycheproof.go | 4 |
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() |