From 9d96d7e781710b306cf40828e35843656ddfe72e Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Wed, 24 Feb 2021 18:24:46 -0500 Subject: lib: randomBytes -> randomBytesWithLengthBetween --- lib/rand.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rand.go') diff --git a/lib/rand.go b/lib/rand.go index 8546948..1ba1679 100644 --- a/lib/rand.go +++ b/lib/rand.go @@ -37,7 +37,7 @@ func RandomBytes(size int) ([]byte, error) { } // Randomly generates `min` to `max` bytes. -func randomBytes(min, max int64) []byte { +func randomBytesWithLengthBetween(min, max int64) []byte { bs := make([]byte, RandomInt(min, max)) _, err := rand.Read(bs) if err != nil { -- cgit v1.2.3