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