diff options
author | 2019-11-28 21:41:42 +0000 | |
---|---|---|
committer | 2019-11-28 21:41:42 +0000 | |
commit | 3ebbede19be0ac58ee2f9b49effa9d527ca672a6 (patch) | |
tree | ba8272d58a10ad93f155b0563891a4be0635309a | |
parent | no need for fallthrough (diff) | |
download | wireguard-openbsd-3ebbede19be0ac58ee2f9b49effa9d527ca672a6.tar.xz wireguard-openbsd-3ebbede19be0ac58ee2f9b49effa9d527ca672a6.zip |
go fmt
-rw-r--r-- | regress/lib/libcrypto/wycheproof/wycheproof.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/regress/lib/libcrypto/wycheproof/wycheproof.go b/regress/lib/libcrypto/wycheproof/wycheproof.go index 0936dabc0f0..51320903216 100644 --- a/regress/lib/libcrypto/wycheproof/wycheproof.go +++ b/regress/lib/libcrypto/wycheproof/wycheproof.go @@ -1,4 +1,4 @@ -/* $OpenBSD: wycheproof.go,v 1.103 2019/11/28 21:41:14 tb Exp $ */ +/* $OpenBSD: wycheproof.go,v 1.104 2019/11/28 21:41:42 tb Exp $ */ /* * Copyright (c) 2018 Joel Sing <jsing@openbsd.org> * Copyright (c) 2018, 2019 Theo Buehler <tb@openbsd.org> @@ -240,15 +240,15 @@ type wycheproofTestGroupECDSAWebCrypto struct { } type wycheproofTestHkdf struct { - TCID int `json:"tcId"` - Comment string `json:"comment"` - Ikm string `json:"ikm"` - Salt string `json:"salt"` - Info string `json:"info"` - Size int `json:"size"` - Okm string `json:"okm"` - Result string `json:"result"` - Flags []string `json:"flags"` + TCID int `json:"tcId"` + Comment string `json:"comment"` + Ikm string `json:"ikm"` + Salt string `json:"salt"` + Info string `json:"info"` + Size int `json:"size"` + Okm string `json:"okm"` + Result string `json:"result"` + Flags []string `json:"flags"` } type wycheproofTestGroupHkdf struct { |