lib

package
v0.0.0-...-176a01d Latest Latest
Warning

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

Go to latest
Published: Jan 22, 2017 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Auth

func Auth(username string, password string) (bool, error)

func HashPass

func HashPass(password string) ([]byte, int, []byte)

FIXME: If the rand stuff in here fails, it will probably crash the app, there is no error handling here

func ParseBasic

func ParseBasic(authHeader string) (string, error)

func VerifyHash

func VerifyHash(password string, salt []byte, iterations int, hash []byte) bool

Types

type User

type User struct {
	Salt       []byte `db:"password_salt"`
	Iterations int    `db:"password_iterations"`
	Hash       []byte `db:"password_hash"`
	Password   string `json:"password"`
	UserName   string `db:"username" json:"userName"`
	Name       string `db:"name"     json:"name"`
	Email      string `db:"email"    json:"email"`
}

func GetUserAuthInfo

func GetUserAuthInfo(username string) (*User, error)

Jump to

Keyboard shortcuts

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