()
| 9 | type Seed [32]byte |
| 10 | |
| 11 | func (s Seed) String() string { |
| 12 | return base64.StdEncoding.EncodeToString(s[:]) |
| 13 | } |
| 14 | |
| 15 | // NewSeed generates a cryptographically secure random 32-byte seed |
| 16 | // suitable for simulations requiring high entropy and unpredictability. |
no outgoing calls