summaryrefslogtreecommitdiff
path: root/funcs
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2020-12-15 11:43:13 -0500
committerDave Henderson <dhenderson@gmail.com>2020-12-15 11:45:33 -0500
commitc444481e5d3901e49720cef20c0b186e7eaa7566 (patch)
treed4199f23bc91c18350959c6d25720d44f048096b /funcs
parent2467aacf1f5de2d354b906c8c7a9eb87399c5a30 (diff)
Linting
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'funcs')
-rw-r--r--funcs/crypto.go4
1 files changed, 2 insertions, 2 deletions
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)