sha512.BlockSize
// BlockSize is the block size, in bytes, of the SHA-512/224,
// SHA-512/256, SHA-384 and SHA-512 hash functions.
const BlockSize = 128
sha512.Size
// Size is the size, in bytes, of a SHA-512 checksum.
const Size = 64
sha512.Size224
// Size224 is the size, in bytes, of a SHA-512/224 checksum.
const Size224 = 28
sha512.Size256
// Size256 is the size, in bytes, of a SHA-512/256 checksum.
const Size256 = 32
sha512.Size384
// Size384 is the size, in bytes, of a SHA-384 checksum.
const Size384 = 48
sha512.New
// New returns a new hash.Hash computing the SHA-512 checksum.
func New() hash.Hash
sha512.New384
// New384 returns a new hash.Hash computing the SHA-384 checksum.
func New384() hash.Hash
sha512.New512_224
// New512_224 returns a new hash.Hash computing the SHA-512/224 checksum.
func New512_224() hash.Hash
sha512.New512_256
// New512_256 returns a new hash.Hash computing the SHA-512/256 checksum.
func New512_256() hash.Hash
sha512.Sum384
// Sum384 returns the SHA384 checksum of the data.
func Sum384(data []byte) [Size384]byte
sha512.Sum512
// Sum512 returns the SHA512 checksum of the data.
func Sum512(data []byte) [Size]byte
sha512.Sum512_224
// Sum512_224 returns the Sum512/224 checksum of the data.
func Sum512_224(data []byte) [Size224]byte
sha512.Sum512_256
// Sum512_256 returns the Sum512/256 checksum of the data.
func Sum512_256(data []byte) [Size256]byte