...

Package sha512

import "crypto/sha512"
Overview
Index

Overview ▾

Package sha512 implements the SHA384 and SHA512 hash algorithms as defined in FIPS 180-2.

Constants

const BlockSize = 128

The blocksize of SHA512 and SHA384 in bytes.

const Size = 64

The size of a SHA512 checksum in bytes.

const Size384 = 48

The size of a SHA384 checksum in bytes.

func New

func New() hash.Hash

New returns a new hash.Hash computing the SHA512 checksum.

func New384

func New384() hash.Hash

New384 returns a new hash.Hash computing the SHA384 checksum.

func Sum384

func Sum384(data []byte) (sum384 [Size384]byte)

Sum384 returns the SHA384 checksum of the data.

func Sum512

func Sum512(data []byte) [Size]byte

Sum512 returns the SHA512 checksum of the data.