mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
.. | ||
common | ||
internal | ||
md5_crypt | ||
.travis.yml | ||
AUTHORS.md | ||
crypt.go | ||
LICENSE | ||
README.rst |
crypt - A password hashing library for Go
crypt provides pure golang implementations of UNIX's crypt(3).
The goal of crypt is to bring a library of many common and popular password hashing algorithms to Go and to provide a simple and consistent interface to each of them. As every hashing method is implemented in pure Go, this library should be as portable as Go itself.
All hashing methods come with a test suite which verifies their operation against itself as well as the output of other password hashing implementations to ensure compatibility with them.
I hope you find this library to be useful and easy to use!
Install
To install crypt, use the go get command.
go get github.com/GehirnInc/crypt
Usage
package main
import (
"fmt"
"github.com/GehirnInc/crypt"
"github.com/GehirnInc/crypt/sha256_crypt"
_ )
func main() {
:= crypt.SHA256.New()
crypt , _ := crypt.Generate([]byte("secret"), []byte("$5$salt"))
ret.Println(ret)
fmt
:= crypt.Verify(ret, []byte("secret"))
err .Println(err)
fmt
// Output:
// $5$salt$kpa26zwgX83BPSR8d7w93OIXbFt/d3UOTZaAu5vsTM6
// <nil>
}
Documentation
The documentation is available on GoDoc.