libscrypt

C library implementation of the scrypt key derivation function

brewmacoslinux
Try with needOr install directly
Source

About

Library for scrypt

Commands

libscrypt

Examples

Hash a password using scrypt with default parameters$ libscrypt_hash password salt
Verify a scrypt hash against a password$ libscrypt_verify hash password salt
Generate a scrypt hash with custom parameters (N=32768, r=8, p=1)$ libscrypt_hash -N 32768 -r 8 -p 1 password salt