From 804ca010dd354ff30e12dbf2c40dcb83e9820918 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 18 Oct 2024 13:45:15 -0300 Subject: Remove Go code in favor of upstream libscrypt-kdf Adapt build to handle cgo shenanigans. --- tests/fuzz/api/scrypt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/fuzz/api/scrypt.go') diff --git a/tests/fuzz/api/scrypt.go b/tests/fuzz/api/scrypt.go index eb29d2d..8e785a5 100644 --- a/tests/fuzz/api/scrypt.go +++ b/tests/fuzz/api/scrypt.go @@ -10,7 +10,7 @@ import ( func api(f *testing.F) { f.Fuzz(func(t *testing.T, password []byte, salt []byte) { - if len(salt) < saltMinLength { + if len(salt) < _SALT_MIN_LENGTH { return } -- cgit v1.2.3