جزّئ كلمة مرور باستخدام bcrypt وتحقق من كلمة مرور مقابل تجزئة bcrypt، بالكامل داخل متصفحك.
كيفية استخدام bcrypt
اختر تجزئة لإنشاء تجزئة، أو تحقق لفحص واحدة.
أدخل كلمة مرور، وتجزئة عند التحقق.
اقرأ تجزئة bcrypt أو نتيجة المطابقة.
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.
الأسئلة الشائعة
عامل التكلفة: كل جولة إضافية تضاعف العمل اللازم لحساب التجزئة، مما يبطئ هجمات القوة الغاشمة. من 10 إلى 12 خيار شائع.
يضمّن bcrypt ملحا عشوائيا في كل تجزئة، لذا يختلف الناتج حتى لكلمة المرور نفسها. يظل التحقق ناجحا لأن الملح مخزّن داخل التجزئة.
تجري التجزئة بالكامل داخل متصفحك، لذا لا تُرفع كلمات المرور. ومع ذلك، تجنب لصق كلمات مرور الإنتاج الحقيقية على الأجهزة المشتركة.
ضمّن هذه الأداة
أضف هذه الأداة إلى موقعك الخاص. انسخ المقتطف أدناه، ويبقى محدّثاً تلقائياً.
<iframe src="https://monu.tools/embed/ar/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 ومكوّناتها بصيغة النسبة المئوية (percent-encoding)، بأمان مع UTF-8.
فُكّ ترميز رمز JSON Web Token لفحص رأسه وحمولته، مع أوقات انتهاء وإصدار بصيغة مقروءة. يعمل بالكامل داخل متصفحك، ولا تُرفع الرموز أبداً.
أنشئ تجزئات SHA-1 وSHA-256 وSHA-384 وSHA-512 لأي نص، مباشرة داخل متصفحك.