Tool Hub

Bcrypt हैश

bcrypt पासवर्ड हैश जनरेट और सत्यापित करें (ब्राउज़र-सुरक्षित शुद्ध JS)

bcrypt पासवर्ड हैश जनरेट करें या किसी मौजूदा हैश के विरुद्ध पासवर्ड सत्यापित करें। अधिक साल्ट राउंड जनरेशन समय की कीमत पर ब्रूट-फ़ोर्स प्रतिरोध बढ़ाते हैं (प्रत्येक राउंड काम दोगुना करता है)। 10-12 आधुनिक अनुशंसा है।

हैश करने के लिए कोई भी स्ट्रिंग — वास्तविक पासवर्ड नहीं।

कैसे उपयोग करें

  1. चुनें
  2. अपलोड और चुनें
  3. Copy the resulting hash string for use in tests or documentation.
  4. Switch to "Verify hash" mode, enter the original string and the stored hash, and click "Verify" to confirm they match.
  5. All computation runs locally in your browser and nothing is stored or sent anywhere.

उदाहरण

  • Hashing "hunter2" with 10 rounds produces a string like $2b$10$... in about 100ms; the format line confirms version 2b and 10 rounds.
  • In verify mode, pasting that hash back and entering "hunter2" returns a match, while entering "hunter3" returns a mismatch.

उत्पादन में उपयोग से पहले आउटपुट सत्यापित करें। कोई वारंटी नहीं — देखें शर्तें.