library: crypto/rand

This commit is contained in:
xushiwei
2024-07-31 10:26:18 +08:00
parent a3ff845a14
commit af6e4abe84
5 changed files with 360 additions and 0 deletions

View File

@@ -1,18 +0,0 @@
package main
import (
"crypto/rand"
"fmt"
)
func main() {
c := 10
b := make([]byte, c)
_, err := rand.Read(b)
if err != nil {
fmt.Println("error:", err)
return
}
// The slice should now contain random bytes instead of only zeroes.
fmt.Printf("%x\n", b)
}