Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for New512_224 (0.05 sec)

  1. api/go1.5.txt

    pkg crypto/sha512, const Size224 = 28
    pkg crypto/sha512, const Size224 ideal-int
    pkg crypto/sha512, const Size256 = 32
    pkg crypto/sha512, const Size256 ideal-int
    pkg crypto/sha512, func New512_224() hash.Hash
    pkg crypto/sha512, func New512_256() hash.Hash
    pkg crypto/sha512, func Sum512_224([]uint8) [28]uint8
    pkg crypto/sha512, func Sum512_256([]uint8) [32]uint8
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0.zip

    consumeUint64(b []byte) ([]byte, uint64) { return b[8:], byteorder.BEUint64(b) } // New returns a new Digest computing the SHA-512 hash. func New() *Digest { d := &Digest{size: size512} d.Reset() return d } // New512_224 returns a new Digest computing the SHA-512/224 hash. func New512_224() *Digest { d := &Digest{size: size224} d.Reset() return d } // New512_256 returns a new Digest computing the SHA-512/256 hash. func New512_256() *Digest { d := &Digest{size: size256} d.Reset() return d } // New384...
    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