PBKDF2
Algorithm Format
# Algorithm
pbkdf2$<iteration>$<salt-length>
# e.g.
pbkdf2$10000$50PBKDF2-HMAC-SHA256
sha256:<iteration>:<base64-salt>:<base64-password-hash>
# ex.
sha256:10000:ayZoqdmIewDpUB:Ud6aAhvpw9RqZPt/0Rd0U9uPDKLOWKnYHAS+Lm07oqDWwDLw/U74P0jXQ0nsGW9O/jc=echo 'sha256:10000:'$(echo '<salt-string>' | base64 | cut -c 1-14)':'$(echo 'password-string' | base64) > hash.txthashcat -m 10900 hash.txt wordlist.txtUsing PBKDF2 in Python
Last updated