Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reseedCounter (0.53 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    entropy[:], additionalInput[:]) c.update(&seed) c.reseedCounter = 1 } // Generate produces at most maxRequestSize bytes of random data in out. func (c *Counter) Generate(out []byte, additionalInput *[SeedSize]byte) (reseedRequired bool) { // CTR_DRBG_Generate_algorithm, per Section 10.2.1.5.1. fips140.RecordApproved() if len(out) > maxRequestSize { panic("crypto/drbg: internal error: request size exceeds maximum") } // Step 1. if c.reseedCounter > reseedInterval { return true } // Step 2. if additionalInput...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    entropy[:], additionalInput[:]) c.update(&seed) c.reseedCounter = 1 } // Generate produces at most maxRequestSize bytes of random data in out. func (c *Counter) Generate(out []byte, additionalInput *[SeedSize]byte) (reseedRequired bool) { // CTR_DRBG_Generate_algorithm, per Section 10.2.1.5.1. fips140.RecordApproved() if len(out) > maxRequestSize { panic("crypto/drbg: internal error: request size exceeds maximum") } // Step 1. if c.reseedCounter > reseedInterval { return true } // Step 2. if additionalInput...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top