...
Run Format

Package sha1

import "crypto/sha1"
Overview
Index
Examples

Overview ▾

Package sha1 implements the SHA1 hash algorithm as defined in RFC 3174.

Constants

const BlockSize = 64

The blocksize of SHA1 in bytes.

const Size = 20

The size of a SHA1 checksum in bytes.

func New

func New() hash.Hash

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

Example

func Sum

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

Sum returns the SHA1 checksum of the data.

Example