Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/crypto/sha512/sha512.go

    func New() hash.Hash {
    	if boring.Enabled {
    		return boring.NewSHA512()
    	}
    	d := &digest{function: crypto.SHA512}
    	d.Reset()
    	return d
    }
    
    // New512_224 returns a new hash.Hash computing the SHA-512/224 checksum.
    func New512_224() hash.Hash {
    	d := &digest{function: crypto.SHA512_224}
    	d.Reset()
    	return d
    }
    
    // New512_256 returns a new hash.Hash computing the SHA-512/256 checksum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top