- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for spongeAbsorbing (0.08 sec)
-
lib/fips140/v1.0.0.zip
5 package sha3 import ( "crypto/internal/fips140" "crypto/internal/fips140/subtle" "errors" ) // spongeDirection indicates the direction bytes are flowing through the sponge. type spongeDirection int const ( // spongeAbsorbing indicates that the sponge is absorbing input. spongeAbsorbing spongeDirection = iota // spongeSqueezing indicates that the sponge is being squeezed. spongeSqueezing ) type Digest struct { a [1600 / 8]byte // main state of the hash // a[n:rate] is the buffer. If absorbing, it's...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)