Updated Random password (markdown)

sommermorgentraum 2024-10-19 16:00:42 +08:00
parent b210deadb3
commit 4937bddca1

@ -5,3 +5,12 @@ In theory if the quality of seeds (which is from mostly radio noise) is good eno
All the “send” button/checkbox in this app means send via serial asynchrony messages, check serial page in this wiki for more details.
Flood mode is from streaming generated code, this will always streaming into serial, alternatively you can check the savin checkbox to save generated codes and seeds. Keep in mind that with seeds, you can generated same code with proper PRNG, so they are same level of security, dont leak them.
# 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 ? |
| ------------------------------------------------ | ----------------- | ----------------------- | ------------------------------------------ | --------------------------------- |
| The original demodulated AFSK data as seeds | ✅ | 🚫 | 🚫 | 🚫 |
| Each digits using different seed in the buffer | ✅ | 🚫 | 🚫 | ✅ |
| The LCG PRNG algo inside of cpp STL | 🚫 | ✅ | 🚫 | 🚫 |
| Shuffle with two groups of seeds | 🚫 | ✅ | 🚫 | ✅ |
| The SHA-512 hash algo | 🚫 | 🚫 | ✅ | 🚫 |