From c444481e5d3901e49720cef20c0b186e7eaa7566 Mon Sep 17 00:00:00 2001 From: Dave Henderson Date: Tue, 15 Dec 2020 11:43:13 -0500 Subject: Linting 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 1937e84e..0b6049af 100644 --- a/funcs/crypto.go +++ b/funcs/crypto.go @@ -112,7 +112,7 @@ func (f *CryptoFuncs) SHA512(input interface{}) string { } // SHA512_224 - -// nolint: golint stylecheck +//nolint: golint,stylecheck func (f *CryptoFuncs) SHA512_224(input interface{}) string { in := toBytes(input) out := sha512.Sum512_224(in) @@ -120,7 +120,7 @@ func (f *CryptoFuncs) SHA512_224(input interface{}) string { } // SHA512_256 - -// nolint: golint stylecheck +//nolint: golint,stylecheck func (f *CryptoFuncs) SHA512_256(input interface{}) string { in := toBytes(input) out := sha512.Sum512_256(in) -- cgit v1.2.3