const golang.org/x/crypto/blake2b.Size256

6 uses

	golang.org/x/crypto/blake2b (current package)
		blake2b.go#L35: 	Size256 = 32
		blake2b.go#L71: func Sum256(data []byte) [Size256]byte {
		blake2b.go#L73: 	var sum256 [Size256]byte
		blake2b.go#L74: 	checkSum(&sum, Size256, data)
		blake2b.go#L75: 	copy(sum256[:], sum[:Size256])
		blake2b.go#L89: func New256(key []byte) (hash.Hash, error) { return newDigest(Size256, key) }