Update crypto_algorithms.md

This commit is contained in:
Omar Santos 2025-01-31 07:33:55 -05:00 committed by GitHub
parent 317896f9bb
commit 05d51313f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,13 +4,13 @@ Let's go over the most common encryption and hashing algorithms, and compare the
## Hashing Algorithms
The folloing table that compares some of the most well-known hashing algorithms, along with an indication of whether they are considered to be post-quantum resistant.
| Algorithm Name | Output Size (bits) | Cryptographic | Post-Quantum Ready |
| Algorithm Name | Output Size (bits) | Post-Quantum Ready |
|----------------|--------------------|---------------|-------------------|
| MD5 | 128 | Yes | No |
| SHA-1 | 160 | Yes | No |
| SHA-256 | 256 | Yes | No |
| SHA-3 | 224, 256, 384, 512 | Yes | Yes (believed to) |
| BLAKE2 | 256, 512 | Yes | Yes (believed to) |
| MD5 | 128 | No |
| SHA-1 | 160 | No |
| SHA-256 | 256 | No |
| SHA-3 | 224, 256, 384, 512 | Yes (believed to) |
| BLAKE2 | 256, 512 | Yes (believed to) |