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.
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.
 Click to show internal directories. 
   Click to hide internal directories.