- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for writeGeneric (0.27 sec)
-
lib/fips140/v1.1.0-rc1.zip
// the last byte. d.a[d.rate-1] ^= 0x80 // Apply the permutation d.permute() d.state = spongeSqueezing } // Write absorbs more data into the hash's state. func (d *Digest) Write(p []byte) (n int, err error) { return d.write(p) } func (d *Digest) writeGeneric(p []byte) (n int, err error) { if d.state != spongeAbsorbing { panic("sha3: Write after Read") } n = len(p) for len(p) > 0 { x := subtle.XORBytes(d.a[d.n:d.rate], d.a[d.n:d.rate], p) d.n += x p = p[x:] // If the sponge is full, apply the permutation....
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
// the last byte. d.a[d.rate-1] ^= 0x80 // Apply the permutation d.permute() d.state = spongeSqueezing } // Write absorbs more data into the hash's state. func (d *Digest) Write(p []byte) (n int, err error) { return d.write(p) } func (d *Digest) writeGeneric(p []byte) (n int, err error) { if d.state != spongeAbsorbing { panic("sha3: Write after Read") } n = len(p) for len(p) > 0 { x := subtle.XORBytes(d.a[d.n:d.rate], d.a[d.n:d.rate], p) d.n += x p = p[x:] // If the sponge is full, apply the permutation....
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0)