hash

package
v0.0.0-...-745a4df Latest Latest
Warning

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

Go to latest
Published: Jan 15, 2016 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BCrypt

type BCrypt struct {
	WorkFactor int
}

BCrypt implements the Hasher interface by using BCrypt.

func (*BCrypt) Compare

func (b *BCrypt) Compare(hash, data []byte) error

func (*BCrypt) Hash

func (b *BCrypt) Hash(data []byte) ([]byte, error)

type Hasher

type Hasher interface {
	// Compare compares data with a hash and returns an error
	// if the two do not match.
	Compare(hash, data []byte) error

	// Hash creates a hash from data or returns an error.
	Hash(data []byte) ([]byte, error)
}

Hasher defines how a oauth2-compatible hasher should look like.

Jump to

Keyboard shortcuts

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