sha512

package standard library
go1.9.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 4, 2017 License: BSD-3-Clause Imports: 3 Imported by: 23,971

Documentation

Overview

Package sha512 implements the SHA-384, SHA-512, SHA-512/224, and SHA-512/256 hash algorithms as defined in FIPS 180-4.

Index

Constants

View Source
const (
	// Size is the size, in bytes, of a SHA-512 checksum.
	Size = 64

	// Size224 is the size, in bytes, of a SHA-512/224 checksum.
	Size224 = 28

	// Size256 is the size, in bytes, of a SHA-512/256 checksum.
	Size256 = 32

	// Size384 is the size, in bytes, of a SHA-384 checksum.
	Size384 = 48

	// BlockSize is the block size, in bytes, of the SHA-512/224,
	// SHA-512/256, SHA-384 and SHA-512 hash functions.
	BlockSize = 128
)

Variables

This section is empty.

Functions

func New

func New() hash.Hash

New returns a new hash.Hash computing the SHA-512 checksum.

func New384

func New384() hash.Hash

New384 returns a new hash.Hash computing the SHA-384 checksum.

func New512_224 added in go1.5

func New512_224() hash.Hash

New512_224 returns a new hash.Hash computing the SHA-512/224 checksum.

func New512_256 added in go1.5

func New512_256() hash.Hash

New512_256 returns a new hash.Hash computing the SHA-512/256 checksum.

func Sum384 added in go1.2

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

Sum384 returns the SHA384 checksum of the data.

func Sum512 added in go1.2

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

Sum512 returns the SHA512 checksum of the data.

func Sum512_224 added in go1.5

func Sum512_224(data []byte) (sum224 [Size224]byte)

Sum512_224 returns the Sum512/224 checksum of the data.

func Sum512_256 added in go1.5

func Sum512_256(data []byte) (sum256 [Size256]byte)

Sum512_256 returns the Sum512/256 checksum of the data.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL