summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2019-10-02 16:20:35 -0400
committerDave Henderson <dhenderson@gmail.com>2019-10-02 16:20:35 -0400
commitfa488e58efd9bb395a1376cf9a53d00ceb60c9e9 (patch)
tree06583cd63421f62c1987c8989450687a1ab26459
parent9ee517960f8ec53ada73f455471e67b21b0c88e4 (diff)
Fix new lint failures
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
-rw-r--r--funcs/crypto.go4
1 files changed, 2 insertions, 2 deletions
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)