From 0337cb91ea6bf1f542b43ac8c551c34d7b48c2bd Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 8 Apr 2022 22:56:09 -0400 Subject: [PATCH] keywordfunc: ignore ripemd160 for compat sake Signed-off-by: Vincent Batts --- keywordfunc.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/keywordfunc.go b/keywordfunc.go index 7a8a170..8876ca5 100644 --- a/keywordfunc.go +++ b/keywordfunc.go @@ -12,6 +12,8 @@ import ( "os" "github.com/vbatts/go-mtree/pkg/govis" + + //lint:ignore SA1019 yes ripemd160 is deprecated, but this is for mtree compatibility "golang.org/x/crypto/ripemd160" )