"Vernam cipher"
On Fri, Aug 4, 2017 at 14:17, \0xDynamite<dreamingforward@gmail.com> wrote:On 8/4/17, Randydandy <randydandy@randydandy.de> wrote:>> Would not a coin flip with the exact same initial parameters (height,>> force, deterministic air currents, and striking surface) have the same>> result?>[...]> The problem with your algorithm is that there are no parameters that> would be unknown. Only if you get randomness from another source as> parameters which makes this pseudo random.Okay, I should know this, but who came up with the idea of usingrandom-number generators for ciphers anyway? Most XOR ciphers (whichis unbreakable if, for example, you use a key as long as the text) usea key as a source, AFAIK. Anyone have a reference?Now, chaotic functions are known mathematically to be "topologicallycomplete" (I believe that's the term I learned) -- that means theywill cover every number in the range. An amazing feat: consider ifyou're using 2^63 (which will fit in ONE world) to express your realnumber in the logistic function. Your chance of landing on a alreadyvisited number is 9.22^308 -- beyond the scale of indexing every atomin the universe.So, in theory you have both an UNBREAKABLE and PRACTICAL ciphermethod: use the logistic function to make a pseudo-random numbergenerator, think of unique words that you can transform into your seedvalues, and communicate those "humane" keys to your recipient.How can you possibly break this (apart from psychological tactics ofguessing the words used to create the seed values)?Marxos