• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..17-May-2016-

apr1_crypt/H17-May-2016-152114

common/H17-May-2016-219126

md5_crypt/H17-May-2016-256193

sha256_crypt/H17-May-2016-354282

sha512_crypt/H17-May-2016-367295

AUTHORS.mdH A D17-May-2016125 94

LICENSEH A D17-May-20161.3 KiB2823

README.mdH A D17-May-2016787 2617

crypt.goH A D17-May-20163.4 KiB10957

README.md

1crypt
2=====
3A password hashing library.
4
5The goal of crypt is to bring a library of many common and popular password
6hashing algorithms to Go and to provide a simple and consistent interface to
7each of them. As every hashing method is implemented in pure Go, this library
8should be as portable as Go itself.
9
10All hashing methods come with a test suite which verifies their operation
11against itself as well as the output of other password hashing implementations
12to ensure compatibility with them.
13
14I hope you find this library to be useful and easy to use!
15
16Note: forked from <https://github.com/jeramey/go-pwhash>
17
18## Installation
19
20	go get github.com/kless/osutil/user/crypt
21
22## License
23
24The source files are distributed under a BSD-style license that can be found
25in the LICENSE file.
26