Skip to content

dchest/uscrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Package uscrypt implements Unix crypt-like password hashing scheme
based on scrypt sequential memory-hard key derivation function.

Format of password hashes:

    $scrypt$logN=<LogN>,r=<R>,p=<P>$<SALT>$<PWDHASH>

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

About

Go package uscrypt implements Unix crypt-like password hashing scheme based on scrypt sequential memory-hard key derivation function.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages