- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for Random (0.96 sec)
-
RELEASE.md
* The random-number-generating ops in the `tf.random` module when the global random seed has not yet been set (via `tf.random.set_seed`). Throws `RuntimeError` from Python or `InvalidArgument` from C++ * `tf.compat.v1.get_seed` if the global random seed has not yet been set (via `tf.random.set_seed`). Throws `RuntimeError` from Python orRegistered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Tue Oct 28 22:27:41 UTC 2025 - 740.4K bytes - Viewed (3) -
lib/fips140/v1.1.0-rc1.zip
signInternal(priv, &μ, (*[32]byte)(random)), nil } func SignExternalMu(priv *PrivateKey, μ []byte) ([]byte, error) { fipsSelfTest() fips140.RecordApproved() var random [32]byte drbg.Read(random[:]) if len(μ) != 64 { return nil, errMessageHashLength } return signInternal(priv, (*[64]byte)(μ), &random), nil } func SignExternalMuDeterm(priv *PrivateKey, μ []byte) ([]byte, error) { fipsSelfTest() fips140.RecordApproved() var random [32]byte if len(μ) != 64 { return nil, errMessageHashLength } return signInternal(priv,...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
lib/fips140/v1.0.0-c2097c7c.zip
entropy.Depleted(func(seed *[48]byte) { c = NewCounter(seed) }) return c }, } // Read fills b with cryptographically secure random bytes. In FIPS mode, it // uses an SP 800-90A Rev. 1 Deterministic Random Bit Generator (DRBG). // Otherwise, it uses the operating system's random number generator. func Read(b []byte) { if !fips140.Enabled { sysrand.Read(b) return } // At every read, 128 random bits from the operating system are mixed as // additional input, to make the output as strong as non-FIPS randomness....
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0)