Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dchest/uscrypt
Go package uscrypt implements Unix crypt-like password hashing scheme based on scrypt sequential memory-hard key derivation function.
https://github.com/dchest/uscrypt
Last synced: about 1 month ago
JSON representation
Go package uscrypt implements Unix crypt-like password hashing scheme based on scrypt sequential memory-hard key derivation function.
- Host: GitHub
- URL: https://github.com/dchest/uscrypt
- Owner: dchest
- License: bsd-2-clause
- Created: 2013-01-26T16:28:31.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-12-11T08:12:19.000Z (almost 10 years ago)
- Last Synced: 2024-06-19T06:54:20.540Z (5 months ago)
- Language: Go
- Homepage:
- Size: 129 KB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Package uscrypt implements Unix crypt-like password hashing scheme
based on scrypt sequential memory-hard key derivation function.Format of password hashes:
$scrypt$logN=,r=,p=
$$
where LogN, R, P are scrypt cost parameters encoded as decimal numbers (in
the exact specified order); SALT is a random salt, PWDHASH is the output of
scrypt, both encoded in Base64 using custom alphabet.INSTALLATION
$ go get github.com/dchest/uscrypt
DOCUMENTATION
See http://godoc.org/github.com/dchest/uscrypt