Skip to content

BCrypt Password Encoder

Vignesh Kumar Mahadevan edited this page Jun 21, 2025 · 1 revision

Usecase In the beginning, User can use cipher text for encoding the password. For Cipher text, there is key which converts plaintext into cipher text. The same key is used for multiple users for encoding the password. If you get a key, you can hack multiple user accounts.

Bcrypt password This is used to convert plaintext into hashing by applying the algorithm such as SHA-256. Apply this hashing on multiple of 2 power 12 rounds (Strength) which user can apply this algorithm on top of hash values. there is Online website for Bcrypt password to know hashing value for plain text.

Clone this wiki locally