इस टूल में कोई समस्या है?
«हैश जेनरेटर ऑनलाइन» के बारे में
यह टूल एक साथ कई एल्गोरिथ्म में किसी भी टेक्स्ट इनपुट से क्रिप्टोग्राफिक हैश उत्पन्न करता है। अपना टेक्स्ट दर्ज करें, एल्गोरिथ्म चुनें और डायजेस्ट की तुलना करें।
एल्गोरिथ्म में SHA-2 और SHA-3 परिवार, BLAKE2, और MD5 और SHA-1 जैसे लेगेसी फ़ंक्शन शामिल हैं।
नए सुरक्षा-संवेदनशील अनुप्रयोगों के लिए हमेशा SHA-256 या मजबूत का उपयोग करें।
इस टूल का उपयोग कैसे करें
How to compute MD5/SHA digests for a text input
Enter the text
"Text" is the string to hash. UTF-8 bytes are what's hashed — accented characters and emoji count as their multi-byte form, so `é` is 2 bytes, not 1.
Choose the algorithm
"Algorithm" picks from `md5`, `sha1`, `sha256`, `sha384`, `sha512`. SHA-256 and above are recommended for anything new; MD5 and SHA-1 are kept for compatibility with legacy systems but are NOT secure against collisions.
Press Run
Result returns a single `digest` field as lowercase hex. Lengths: MD5 32 chars, SHA-1 40, SHA-256 64, SHA-384 96, SHA-512 128.
What hashes are not
Hashes are NOT encryption — there's no decode. They're also NOT a good password store on their own; use bcrypt-generator for password hashing because plain SHA is too fast and rainbow-tabled.