Skip to content

Instantly share code, notes, and snippets.

@koonix
Last active January 7, 2025 23:41
Show Gist options
  • Save koonix/08f912cc7470d4097f850bccbe3129f7 to your computer and use it in GitHub Desktop.
Save koonix/08f912cc7470d4097f850bccbe3129f7 to your computer and use it in GitHub Desktop.
Go random byte generator
import "math/rand/v2"
func randomBytes(dst []byte) {
const charset = "abcdefghijklmnopqrstuvwxyz" +
"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\t\n "
for i := 0; i < len(dst); i++ {
dst[i] = charset[rand.IntN(len(charset))]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment