========================================================================
A Paper describing the SBox8 Stream Cipher Algorithm in Detail. +++ Preliminary Note: +++
echo $cHTML_Attention ?>
sci.crypt @ google-groups
the relevant posting containing the crytanalysis result the original source code (patch applied) the source code for testing RC4 and the one for a potential SBox8 version 2 ========================================================================= This is a proposal for a finite internal state CSPRNG that is based entirely on 8 bit arithmetic and permutation shuffle. The algorithm consist of three different functions 1) PIA, the permutation initialisation algorithm 2) KSA, the key schedule algorithm 3) PRGA, the pseudo-random generation algorithm The initialisation of this CSPRNG is somewhat different to other permutation based CSPRNG, because it does not use a sequentially initialised permutation from the start. In contrast the permutation array of SBox8 is first initialised passing a 32bit seed to the permutation initialisation algorithm (PIA). This function will generate a pre-shuffled pseudo-random permutation. In a second step the key byte are now injected into the pre-shuffled permutation array, using the key schedule algorithm (KSA). The key byte used are independent from the seed byte. The output of the keystream encrypting all zero is indistinguishable from randomness for up to 2**39bit (64 GB). Recently tested using the bookstack test [1] which reveals the massive bias of RC4 and ZK-Crypt. Furthermore this algorithm also pass all statistical tests for randomness without failure and can be considered as unbiased. The formulae below passes Qualcomms's bias test, John Walker's ENT, Maurer's Universal test for random bits, show a well uniform distribution regarding Winston Rayburn's bit analysis and pass all tests off Pierre L'Ecuyer test suite TestU01, which are SmallCrush, Crush and BigCrush. This is the algorithm of SBox8
<?//======================================================================== For convenience some test results. The source code for verifying as well as the used test seeds and keys including all results in detail can be found over here http://www.freecx.co.uk/crypto/SBox8/Bookstack_tests_results/ # Comparing SBox8 against RC4 Table 1: -------- Number of files generated by SBox8 and recognized as non-random (from 100) Test run with the book stack parameter "-w 16 -u 16 -q" SBox8 +--------------------------------------------------------------------------+ |Length(bit)|2**31 |2**32 |2**33 |2**34 |2**35 |2**36 |2**37 |2**38 |2**39 | +--------------------------------------------------------------------------+ |Non-random | 5 | 4 | 2 | 3 | 6 | 8 | 7 | 7 | 4 | +--------------------------------------------------------------------------+ Table 2: -------- Number of files generated by RC4 and recognized as non-random (from 100) Test run with the book stack parameter "-w 16 -u 16 -q" RC4 +--------------------------------------------------------------------------+ |Length(bit)|2**31 |2**32 |2**33 |2**34 |2**35 |2**36 |2**37 |2**38 |2**39 | +--------------------------------------------------------------------------+ |Non-random | 4 | 6 | 10 | 23 | 44 | 70 | 98 | 99 | 100 | +--------------------------------------------------------------------------+ # Comparing SBox8 against ZK-Crypt Table 3: -------- Number of files generated by SBox8 and recognized as non-random (from 100) Test run with the book stack parameter "-w 32 -u 65536 -q" SBox8 +-------------------------------------------------------------------+ |Length(bit)|2**24 |2**26 |2**28 |2**30 |2**31 |2**32 |2**33 |2**34 | +-------------------------------------------------------------------+ |Non-random | 2 | 4 | 4 | 3 | 3 | 2 | 3 | 4 | +-------------------------------------------------------------------+ Table 4: -------- Number of files generated by ZK-Crypt and recognized as non-random (from 100) This test had used the book stack parameter "-w 32 -u 65536 -q" Parameters and results of ZK-Crypt as described in [3] ZK-Crypt +-------------------------------------------------------------------+ |Length(bit)|2**24 |2**26 |2**28 |2**30 |2**31 |2**32 |2**33 |2**34 | +-------------------------------------------------------------------+ |Non-random | 25 | 51 | 97 | 100 | n/t | n/t | n/t | n/t | +-------------------------------------------------------------------+ [ n/t = not tested ] ^ Top The source code of SBox8 as example implementation for ANSI-C, Java and Python can be found here here The tests and some test results can be downloaded here here The book stack test itself is written by Alexey Lubkin here 2015/2016, Karl-Uwe Frank This Scheme, Source Code and Algorithm of SBox8 is placed into the Public Domain http://unlicense.org/ Last update: 2016-04-08, 23:23 GMT |