From fa488e58efd9bb395a1376cf9a53d00ceb60c9e9 Mon Sep 17 00:00:00 2001 From: Dave Henderson Date: Wed, 2 Oct 2019 16:20:35 -0400 Subject: Fix new lint failures Signed-off-by: Dave Henderson --- funcs/crypto.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'funcs') diff --git a/funcs/crypto.go b/funcs/crypto.go index a59dda0d..f1123874 100644 --- a/funcs/crypto.go +++ b/funcs/crypto.go @@ -99,7 +99,7 @@ func (f *CryptoFuncs) SHA512(input interface{}) string { } // SHA512_224 - -// nolint: golint +// nolint: golint stylecheck func (f *CryptoFuncs) SHA512_224(input interface{}) string { in := toBytes(input) out := sha512.Sum512_224(in) @@ -107,7 +107,7 @@ func (f *CryptoFuncs) SHA512_224(input interface{}) string { } // SHA512_256 - -// nolint: golint +// nolint: golint stylecheck func (f *CryptoFuncs) SHA512_256(input interface{}) string { in := toBytes(input) out := sha512.Sum512_256(in) -- cgit v1.2.3