bcrypt से password hash करें और bcrypt hash के विरुद्ध password सत्यापित करें, पूरी तरह आपके ब्राउज़र में।
Bcrypt का उपयोग कैसे करें
Hash बनाने के लिए Hash चुनें, या एक जांचने के लिए Verify।
एक password दर्ज करें, और सत्यापित करते समय एक hash।
bcrypt hash या मिलान परिणाम पढ़ें।
A bcrypt tool that hashes a password at a cost you choose, and verifies a password against an existing bcrypt hash. Everything runs locally in your browser, so passwords stay on your device.
Bcrypt is an adaptive password-hashing function designed specifically for storing passwords. Unlike a fast hash such as SHA-256, it is deliberately slow and includes a built-in salt, which is exactly what you want when defending stored passwords.
The cost factor (the rounds) sets how much work each hash takes. Every extra round doubles the computation, so raising the cost makes large-scale brute-force and GPU attacks far slower, while a single login stays fast enough. A value of 10 to 12 is a common choice.
Bcrypt mixes a random salt into every hash, so the same password produces a different hash each time. That defeats precomputed rainbow tables, and verification still works because the salt is stored inside the hash itself.
To check a password, the verify mode reads the salt and cost out of the stored hash, hashes the candidate the same way, and compares, which is why you only need the hash and the password, not the original salt.
Hashing and verifying run entirely in your browser, so nothing is uploaded. Even so, avoid pasting real production passwords on a shared computer.
अक्सर पूछे जाने वाले सवाल
Cost factor: प्रत्येक अतिरिक्त round hash गणना के लिए आवश्यक कार्य दोगुना करता है, जिससे brute-force attacks धीमे होते हैं। 10-12 एक सामान्य विकल्प है।
Bcrypt प्रत्येक hash में एक random salt शामिल करता है, इसलिए एक ही password के लिए भी आउटपुट अलग होता है। सत्यापन फिर भी काम करता है क्योंकि salt hash के अंदर संग्रहीत है।
Hashing पूरी तरह आपके ब्राउज़र में चलती है, इसलिए passwords अपलोड नहीं होते। फिर भी, साझा कंप्यूटर पर असली प्रोडक्शन passwords पेस्ट करने से बचें।
इस टूल को एम्बेड करें
इस टूल को अपनी वेबसाइट में जोड़ें। नीचे दिया स्निपेट कॉपी करें; यह अपने आप अपडेट रहता है।
<iframe src="https://monu.tools/embed/hi/bcrypt-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>संबंधित टूल
टेक्स्ट को Base64 में एनकोड करें या Base64 को वापस टेक्स्ट में डिकोड करें. स्वचालित दिशा पहचान के साथ UTF-8 सुरक्षित.
URL और URL घटकों को प्रतिशत-एनकोड और डिकोड करें, UTF-8 सुरक्षित.
JSON Web Token को डिकोड करके उसके हेडर और पेलोड का निरीक्षण करें, मानव-पठनीय समाप्ति और जारी करने के समय के साथ। पूरी तरह आपके ब्राउज़र में चलता है; टोकन कभी अपलोड नहीं होते।
किसी भी टेक्स्ट के SHA-1, SHA-256, SHA-384 और SHA-512 हैश सीधे अपने ब्राउज़र में जनरेट करें.