Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. lib/fips140/v1.0.0.zip

    [SP 800-185]: https://doi.org/10.6028/NIST.SP.800-185 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...
    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