Updated Random password (markdown)

sommermorgentraum 2024-10-19 16:12:35 +08:00
parent 0194c87cd2
commit 13368de753

@ -9,10 +9,10 @@ Flood mode is from streaming generated code, this will always streaming into ser
# Each shuffle algo and what it can bring you # Each shuffle algo and what it can bring you
| Algo / Source | Bring Entropy ? | Bring Randomization ? | Bring difficult to reverse calculation ? | Made it harder to Brute-Force ? | | Algo / Source | Bring Entropy ? | Bring Randomization ? | Bring difficult to reverse calculation ? | Made it harder to Brute-Force ? |
| -------------------------------------------------------------------------- | ----------------- | ----------------------- | ------------------------------------------ | --------------------------------- | | -------------------------------------------------------------------------- | ----------------- | ----------------------- | ------------------------------------------ | --------------------------------- |
| Use time as seeds to pick a random frequency with LCG to fetch AFSK data | 🚫 | ✅ | 🚫 | | | Use time as seeds to pick a random frequency with LCG to fetch AFSK data | 🚫 | ✅ | 🚫 | 🚫 |
| The original demodulated AFSK data as seeds | ✅ | 🚫 | 🚫 | 🚫 | | The original demodulated AFSK data as seeds | ✅ | 🚫 | 🚫 | 🚫 |
| Each digits using different seed in the buffer | ✅ | 🚫 | 🚫 | ✅ | | Each digits using different seed in the buffer | ✅ | 🚫 | 🚫 | ✅ |
| The LCG PRNG algo inside of cpp STL | 🚫 | ✅ | 🚫 | 🚫 | | The LCG PRNG algo inside of cpp STL | 🚫 | ✅ | 🚫 | 🚫 |
| Shuffle with two groups of seeds | 🚫 | ✅ | 🚫 | ✅ | | Shuffle with two groups of seeds | 🚫 | ✅ | 🚫 | ✅ |
| The SHA-512 hash algo | 🚫 | ✅ | ✅ | 🚫 | | The SHA-512 hash algo | 🚫 | ✅ | ✅ | 🚫 |
| Result | ✅ x 2 | ✅ * 4 | ✅ * 1 | ✅ * 3 | | Result | ✅ x 2 | ✅ * 4 | ✅ * 1 | ✅ * 2 |