-
Notifications
You must be signed in to change notification settings - Fork 7
C. Supported Hashing Algorithms
Joshua M Clatney edited this page Dec 19, 2024
·
4 revisions
ClatsCracker supports the following algorithms:
1. Unsalted Hashes:
- MD4
- MD5
- SHA1
- SHA1_v2
- SHA224
- SHA256
- SHA512
- SHA3_224
- SHA3_256
- SHA3_384
- SHA3_512
- RIPEMD160
- BLAKE2_224
- CRC32
2. Salted Hashes:
- BCRYPT
- ARGON2ID
- SCRYPT
This broad support allows testers to handle various real-world scenarios, from legacy systems relying on MD5 or SHA1, to modern, secure environments employing Argon2id or Scrypt.
Note: Salted hashes are more secure, and the tool correctly verifies them using their original salt and configuration parameters, unlike simpler scripts that fail to validate salts properly.