About 391,000 results
Open links in new tab
  1. How do you use bcrypt for hashing passwords in PHP?

    Jan 25, 2011 · Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rules". But what is bcrypt? PHP doesn't offer any such functions, Wikipedia babbles …

  2. Do any security experts recommend bcrypt for password storage?

    The designers of bcrypt were quite aware of the issue, which is why they designed bcrypt out of the block cipher Blowfish and not a SHA-* function. They note in their article the following: …

  3. Node.js: bcrypt vs native crypto - Stack Overflow

    Can someone point out the differences between the two and example situations where use each? bcrypt looks great.

  4. (trapped) error reading bcrypt version v.4.1.2 - Stack Overflow

    Jun 16, 2024 · I am programming an API with FastAPI and also using the module bcrypt==4.1.2 When running the app I get the following error: ... INFO: Finished server process [24084] …

  5. Explain BCrypt like I'm 5 - Information Security Stack Exchange

    Mar 27, 2019 · Bcrypt uses Blowfish symmetric-key block cipher and accepts 3 parameters; cost, salt, and password. The cost is determined by the system level so that the admin can decide …

  6. .net implementation of bcrypt - Stack Overflow

    It sounds like you are looking for BCrypt.net: BCrypt.net is an implementation of OpenBSD's Blowfish-based password hashing code, described in "A Future-Adaptable Password Scheme" …

  7. error (AttributeError) problem with passlib[bcrypt] module

    Feb 26, 2025 · 4 This issue is likely caused by bcrypt 4.1.x removing the about attribute, which passlib still tries to access. Can you check your bcrypt and passlib versions? Run:

  8. node.js - Cannot find module 'bcrypt' - Stack Overflow

    Dec 31, 2015 · I am getting error Cannot find module 'bcrypt' in nodejs application I have tried to install it using npm install bcrypt but still getting the issue. node app.js ...

  9. BCrypt vs Argon2 and their hashing algorithms - Stack Overflow

    Oct 6, 2020 · For Java, We are considering using Bcrypt of Spring or Argon2. Actually reading their documentations, can't find any information if their underlying algorithms are using SHA …

  10. node.js - How do I install bcrypt using npm? - Stack Overflow

    Jun 7, 2021 · The alert function only pops up when I comment out the first line. I have the same problem with sha256. I have tried installing, uninstalling, and reinstalling bcrypt and bcryptjs …