diff --git a/Random-password.md b/Random-password.md index 3f3f93b..c0329ea 100644 --- a/Random-password.md +++ b/Random-password.md @@ -7,10 +7,11 @@ All the β€œsend” button/checkbox in this app means send via serial asynchrony 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, don’t 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 | 🚫 | 🚫 | βœ… | 🚫 | \ No newline at end of file +| 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 | 🚫 | βœ… | 🚫 | βœ… | +| 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 | 🚫 | 🚫 | βœ… | 🚫 | \ No newline at end of file