From edc8c18af747844279a127ea2b8b338bcd5e3b6f Mon Sep 17 00:00:00 2001 From: sommermorgentraum <24917424+zxkmm@users.noreply.github.com> Date: Tue, 1 Oct 2024 08:59:27 +0800 Subject: [PATCH] Created Random password (markdown) --- Random-password.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Random-password.md diff --git a/Random-password.md b/Random-password.md new file mode 100644 index 0000000..e9a4fc8 --- /dev/null +++ b/Random-password.md @@ -0,0 +1,7 @@ +This app use AFSK decoded data as random seeds for each char, use LCG + one more random layer as PRNG algorithms to generate passwords. + +In theory if the quality of seeds (which is from mostly radio noise) is good enough, then the password randomization would be good enough. But usually they are not, or we don’t know, or they do but not stable. So even if this is more secure than many other PRNG generators, in the best case it even can be considered as TRNG generators, don’t use this at high security scenes, for example money-related things. + +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, don’t leak them.