From a791fa9589df2902846b8921554f76fa0b5c1098 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Wed, 15 Mar 2023 15:35:22 +1100 Subject: [PATCH] fix: math/rand -> crypto/rand --- multibase_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multibase_test.go b/multibase_test.go index 2e5acf2..0333546 100644 --- a/multibase_test.go +++ b/multibase_test.go @@ -2,7 +2,7 @@ package multibase import ( "bytes" - "math/rand" + "crypto/rand" "sort" "testing" )