Last active
June 1, 2018 01:33
-
-
Save szabo92/5c3aec6f42c4e1a0124ad6e24c24372b to your computer and use it in GitHub Desktop.
scrypt-kdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scrypt-kdf password site 32768 20 20 28 | |
# To avoid plain text password input, use the one liner: | |
while read site && read -s pass; do scrypt-kdf $pass $site `python -c "print(2**15)"` 20 20 28; break; done; pass="" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment