diff options
author | rsiddharth <s@ricketyspace.net> | 2021-02-24 18:24:46 -0500 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2021-02-24 18:24:46 -0500 |
commit | 9d96d7e781710b306cf40828e35843656ddfe72e (patch) | |
tree | ae2705bb1b7eb1319f7d58f686c9bb988e196310 /lib/rand.go | |
parent | 3d5ecc3132577308636bea80922c74505eec93f0 (diff) |
lib: randomBytes -> randomBytesWithLengthBetween
Diffstat (limited to 'lib/rand.go')
-rw-r--r-- | lib/rand.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |