About 381,000 results
Open links in new tab
  1. What's the advantage of using PBKDF2 vs SHA256 to generate an …

    I'm looking at two comparable pieces of software which encrypt data on disk using a passphrase. One uses PBKDF2 to generate the encryption key from a passphrase, while the other uses …

  2. About how fast can you brute force PBKDF2? - Stack Overflow

    Apr 29, 2013 · So it's not really about how fast PBKDF2 can be brute forced, it's about fast your server can verify a PBKDF2 password. You need to decide how long you think it should take …

  3. How can I generate a PBKDF2 password hash in python?

    Sep 6, 2023 · I want to modify this users.json programatically from python to reset a user password, without having to go through this application UI. How can I generate a …

  4. .net - Hash Password in C#? Bcrypt/PBKDF2 - Stack Overflow

    Apr 14, 2004 · I would like to hash passwords in C# using either bcrypt or PBKDF2 (which appears to be bcrypt related). I like to experiment with how many rounds it takes for my …

  5. python - Pbkdf2_sha256 encryption - Stack Overflow

    Sep 28, 2020 · Hello everyone so I'm figuring out how Pbkdf2_sha256 works. Here are some of the cracked hashes I'm currently studying PBKDF2 pbkdf2_sha256$10000$005OtPxTXhPq$K ...

  6. Verifying a PBKDF2 password hash in python-pbkdf2

    Oct 15, 2015 · Verifying a PBKDF2 password hash in python-pbkdf2 Asked 10 years, 2 months ago Modified 2 years, 3 months ago Viewed 5k times

  7. Recommended # of iterations when using PBKDF2-SHA256?

    A global salt doesn't add any extra protection against rainbow tables. If you're using the global salt to prevent offline cracking attempts, you may want to consider using an HMAC instead. Also, …

  8. Utilizing PBKDF2 with OpenSSL library - Stack Overflow

    Jun 7, 2015 · I want to utilize the PBKDF2 algorithm with SHA1 HMAC (based on this answer). How can I utilize this through the crypto library? I started by looking at man openssl, but the …

  9. mysql - Salt in PBKDF2 - Python - Stack Overflow

    Sep 23, 2016 · I'm just learning about securing password while developing using MySQL and Python, following this tutorial. It's my understanding that the userpassword is stored at the …

  10. hash - What is the specific reason to prefer bcrypt or PBKDF2 over ...

    Aug 9, 2016 · Often algorithms like PBKDF2, bcrypt and scrypt are recommended for this, with bcrypt seemingly getting the loudest votes, e.g. here, here and here. But what about the …