2023-10-23 18:02:25 +11:00
|
|
|
# Java Password storage solutions
|
|
|
|
|
|
|
|
1. [Hashing](hash.java)
|
2023-10-23 18:17:38 +11:00
|
|
|
2. [Salted Hashing](saltedHash.java)
|
2023-10-23 18:50:45 +11:00
|
|
|
3. [Peppered Hashing](pepperedHash.java)
|
2023-10-23 18:02:25 +11:00
|
|
|
|
|
|
|
|
2023-10-23 18:17:38 +11:00
|
|
|
|
|
|
|
|
|
|
|
https://crackstation.net/ - Decrypt Hashes
|
|
|
|
|
2023-10-23 19:20:58 +11:00
|
|
|
|
|
|
|
|
|
|
|
Time to crack hashes:
|
|
|
|
6 chars:
|
|
|
|
plain/salted: ~1 second
|
|
|
|
peppered: ~40 seconds
|
|
|
|
|
|
|
|
|
|
|
|
12 chars:
|
|
|
|
plain/salted: ~5 minutes
|
|
|
|
peppered: ~52 times longer than salted ~4 hours
|