README.md (476B)
1 # Differences in bit order in bytes 2 3 This illustrates three different ways to interpret a sequence of bytes 4 as a sequence of bits. The three ways are 5 6 * Using the method from FIPS.205 (the natural way), using big-endian-bit 7 order. 8 * Using the method from SPHINCS+ where the least significant bits comes 9 first (wierd). 10 * The way it was implemented in the SPHINCS+ reference implementation 11 prior to commit `74b618d4b1311a9946170fbcb85d9bca06033460`. This is 12 just wrong?