Files
xgcl/grand/drng/entropy/rdseed/rdseed_test.go
T
2026-05-27 23:03:00 +08:00

13 lines
141 B
Go

package rdseed
import (
"fmt"
"testing"
)
func TestRDSEED(t *testing.T) {
for i := 0; i < 10; i++ {
fmt.Printf("%x\n", RDSeed())
}
}