crypto.title
crypto.desc
crypto.hashHint
crypto.reference
| crypto.algorithm | crypto.outputCol | crypto.note |
|---|---|---|
| MD5 | 128-bit (32 hex) | Fast but insecure, NOT for passwords |
| SHA-1 | 160-bit (40 hex) | Legacy, avoid for security |
| SHA-256 | 256-bit (64 hex) | Recommended general-purpose hash |
| SHA-384 | 384-bit (96 hex) | Truncated SHA-512 |
| SHA-512 | 512-bit (128 hex) | Strongest SHA-2 variant |
| HMAC | Same as algo | Keyed hash for message auth |
| bcrypt | 60 chars | Adaptive, designed for password hashing |