इस टूल में कोई समस्या है?
«Bcrypt जेनरेटर ऑनलाइन» के बारे में
यह टूल कॉन्फ़िगर करने योग्य कॉस्ट फ़ैक्टर का उपयोग करके सादे टेक्स्ट पासवर्ड के bcrypt हैश की गणना करता है।
डेटाबेस में संग्रहीत करने से पहले पासवर्ड को हैश करने के लिए Bcrypt उद्योग-मानक एल्गोरिथ्म है।
विशिष्ट वेब अनुप्रयोगों के लिए 10-12 का कॉस्ट फ़ैक्टर चुनें।
इस टूल का उपयोग कैसे करें
How to compute a bcrypt hash from a plaintext password
Enter the password
"Password" is the plaintext string to hash. Whitespace is significant — leading/trailing spaces become part of the input, which is rarely what you want.
Pick the cost factor
"Cost (rounds)" defaults to 10 and accepts 4–14 in practice. Each +1 doubles the work — 12 is roughly 1 second on a modern server; 14 is ~4 seconds. Pick the highest your login budget tolerates.
Press Run
Result returns a single `hash` — a 60-char string starting with `$2b$10$…`. The salt is randomly generated each run, so the same password produces a different hash each time — that's correct, not a bug.
Verifying later
To verify a password against a hash, use a bcrypt library's `compare(plaintext, hash)`. Never store the cost factor separately — it's encoded in the hash itself (`$2b$10$` says cost 10).