Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bytepadWrite (0.08 sec)

  1. lib/fips140/v1.1.0-rc1.zip

    initialized // by newCShake function and stores concatenation of N followed by S, encoded // by the method specified in 3.3 of [1]. // It is stored here in order for Reset() to be able to put context into // initial state. initBlock []byte } func bytepadWrite(c *SHAKE, data []byte, rate int) { rateEnc := leftEncode(uint64(rate)) c.Write(rateEnc) c.Write(data) if padlen := rate - (len(rateEnc)+len(data))%rate; padlen < rate { const maxRate = rateK256 c.Write(make([]byte, padlen, maxRate)) // explicit...
    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