crypt
A golang implementation of crypt(3).
EXAMPLES CODE
import (
"fmt"
"github.com/nyarlabo/go-crypt"
)
func main() {
fmt.Println(crypt.Crypt("testtest", "es")); // esDRYJnY4VaGM
}
WHY I FROKED IT?
Original implementation is writte by iasija at 2009-12-08, and original implementation is not supported golang 1.1 or later.
So I fork it for fix this issue, and I added documenation and test code.
Original implementation is hosting on code.google.com/p/go-crypt, and that source code is under the 3-Clause BSD.
NOTE: I could't find to iasija's contact address.
COPYRIGTS AND LICENSE
- Original Implementation: Copyright (c) 2009 iasija All Rights Reserved. (BSD-3-Clause)
- Modification Codes: Copyright (c) 22013-2015 Naoki OKAMURA a.k.a nyarla nyarla@thotep.net Some Rights Reserved. (BSD-3-Clause)