to be
a problem slover

generate random bytes in go

func GenRandomBytes(size int) (randomBytes []byte) {
    rand.Seed(time.Now().UnixNano())
    randomBytes = make([]byte, size)
    rand.Read(randomBytes)
    return randomBytes
}

Context

Pay attention to this line, otherwise everytime randomBytes is the same.

rand.Seed(time.Now().UnixNano())
赞(8) 打赏
欢迎转载,注明出处:刘世明的博客 » generate random bytes in go

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

觉得文章有用就打赏一下作者

支付宝扫一扫打赏

微信扫一扫打赏