Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bytepad (0.06 sec)

  1. lib/fips140/v1.0.0.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 bytepad(data []byte, rate int) []byte { out := make([]byte, 0, 9+len(data)+rate-1) out = append(out, leftEncode(uint64(rate))...) out = append(out, data...) if padlen := rate - len(out)%rate; padlen < rate { out = append(out, make([]byte, padlen)...) } return...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top