Encode, decode, and hash - All your security utilities in one place
| Space | â | %20 or + |
| ! | â | %21 |
| # | â | %23 |
| $ | â | %24 |
| & | â | %26 |
| = | â | %3D |
JWT consists of three parts separated by dots (.):
| Algorithm | Length | Security Status | Use Case |
|---|---|---|---|
| MD5 | 128 bits (32 hex) | Broken | Checksums only |
| SHA-1 | 160 bits (40 hex) | Deprecated | Legacy systems |
| SHA-256 | 256 bits (64 hex) | Secure | General purpose |
| SHA-512 | 512 bits (128 hex) | Secure | High security |