Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for New512_224 (0.06 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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0-c2097c7c.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  3. lib/fips140/v1.1.0-rc1.zip

    byteorder.BEUint64(b) } func (d *Digest) Clone() (hash.Cloner, error) { r := *d return &r, nil } // 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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top