mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-02-20 09:18:32 +00:00
Updated Random password (markdown)
parent
4937bddca1
commit
dbdc72deb8
@ -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.
|
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
|
# 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 ? |
|
||||||
| ------------------------------------------------ | ----------------- | ----------------------- | ------------------------------------------ | --------------------------------- |
|
| -------------------------------------------------------------------------- | ----------------- | ----------------------- | ------------------------------------------ | --------------------------------- |
|
||||||
| The original demodulated AFSK data as seeds | ✅ | 🚫 | 🚫 | 🚫 |
|
| Use time as seeds to pick a random frequency with LCG to fetch AFSK data | 🚫 | ✅ | 🚫 | ✅ |
|
||||||
| Each digits using different seed in the buffer | ✅ | 🚫 | 🚫 | ✅ |
|
| The original demodulated AFSK data as seeds | ✅ | 🚫 | 🚫 | 🚫 |
|
||||||
| The LCG PRNG algo inside of cpp STL | 🚫 | ✅ | 🚫 | 🚫 |
|
| Each digits using different seed in the buffer | ✅ | 🚫 | 🚫 | ✅ |
|
||||||
| Shuffle with two groups of seeds | 🚫 | ✅ | 🚫 | ✅ |
|
| The LCG PRNG algo inside of cpp STL | 🚫 | ✅ | 🚫 | 🚫 |
|
||||||
| The SHA-512 hash algo | 🚫 | 🚫 | ✅ | 🚫 |
|
| Shuffle with two groups of seeds | 🚫 | ✅ | 🚫 | ✅ |
|
||||||
|
| The SHA-512 hash algo | 🚫 | 🚫 | ✅ | 🚫 |
|
Loading…
x
Reference in New Issue
Block a user