Skip to content

Instantly share code, notes, and snippets.

@szabo92
Last active June 1, 2018 01:33
Show Gist options
  • Save szabo92/5c3aec6f42c4e1a0124ad6e24c24372b to your computer and use it in GitHub Desktop.
Save szabo92/5c3aec6f42c4e1a0124ad6e24c24372b to your computer and use it in GitHub Desktop.
scrypt-kdf
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