├── Doxyfile ├── Makefile ├── bin └── .dummy ├── copyright.txt ├── doxygen.log ├── dump.c ├── gpl.txt ├── grep.sh ├── gui └── pygtk-hello-world.py ├── images ├── threshold-search.eps ├── threshold-search.jpg └── threshold-search.png ├── include ├── add-approx.hh ├── adp-arx.hh ├── adp-mul.hh ├── adp-rot.hh ├── adp-rsh-xor.hh ├── adp-shift.hh ├── adp-tea-f-fk-ddt.hh ├── adp-tea-f-fk-noshift.hh ├── adp-tea-f-fk.hh ├── adp-xor-count-odiff.hh ├── adp-xor-fi-count-odiff.hh ├── adp-xor-fi.hh ├── adp-xor-pddt.hh ├── adp-xor.hh ├── adp-xor3.hh ├── adp-xtea-f-fk.hh ├── bsdr.hh ├── common.hh ├── dp-matrix-minimize.hh ├── eadp-tea-f.hh ├── max-adp-arx.hh ├── max-adp-xor-fi.hh ├── max-adp-xor.hh ├── max-adp-xor3-set.hh ├── max-adp-xor3.hh ├── max-xdp-add.hh ├── salsa.hh ├── simon-xor-best-trails.hh ├── simon-xor-ddt-search.hh ├── simon-xor-threshold-search.hh ├── simon.hh ├── speck-trails.hh ├── speck-xor-best-trails.hh ├── speck-xor-threshold-search.hh ├── speck.hh ├── tea-add-ddt-search.hh ├── tea-add-threshold-search.hh ├── tea-f-add-pddt.hh ├── tea.hh ├── threefish-add.hh ├── threefish-xor.hh ├── threefish.hh ├── xdp-add-diff-set.hh ├── xdp-add-pddt.hh ├── xdp-add.hh ├── xdp-and.hh ├── xdp-rot-and.hh ├── xdp-tea-f-fk.hh ├── xdp-xtea-f-fk.hh ├── xlp-add.hh ├── xtea-add-threshold-search.hh ├── xtea-f-add-pddt.hh ├── xtea-f-xor-pddt.hh ├── xtea-xor-threshold-search.hh └── xtea.hh ├── log ├── adp-xor-fi-count-odiff-matrices.sage ├── adp-xor-fi-matrices.sage ├── adp-xor-matrices.sage ├── rc5-xdp-add-last-round-matrices.sage └── xdp-add-matrices.sage ├── logo.jpg ├── main-page.dox ├── makelogo.sh ├── maketags.sh ├── obj └── .dummy ├── readme.txt ├── runtests.sh ├── src ├── add-approx.cc ├── adp-arx.cc ├── adp-lsh-program.cc ├── adp-mul.cc ├── adp-rot-program.cc ├── adp-rot.cc ├── adp-rsh-program.cc ├── adp-rsh-xor.cc ├── adp-shift.cc ├── adp-tea-f-fk-ddt.cc ├── adp-tea-f-fk-noshift.cc ├── adp-tea-f-fk.cc ├── adp-xor-count-odiff.cc ├── adp-xor-fi-count-odiff.cc ├── adp-xor-fi-program.cc ├── adp-xor-fi.cc ├── adp-xor-pddt.cc ├── adp-xor-program.cc ├── adp-xor.cc ├── adp-xor3-program.cc ├── adp-xor3.cc ├── adp-xtea-f-fk.cc ├── bsdr.cc ├── common.cc ├── eadp-tea-f-program.cc ├── eadp-tea-f.cc ├── idea-ref.cc ├── idea.cc ├── max-adp-arx.cc ├── max-adp-xor-fi-program.cc ├── max-adp-xor-fi.cc ├── max-adp-xor-program.cc ├── max-adp-xor.cc ├── max-adp-xor3-program.cc ├── max-adp-xor3-set.cc ├── max-adp-xor3.cc ├── max-eadp-tea-f-program.cc ├── max-xdp-add-program.cc ├── max-xdp-add.cc ├── salsa.cc ├── simon-xor-ddt-search.cc ├── simon-xor-threshold-search.cc ├── simon.cc ├── solve-gf2.cc ├── speck-xor-ddt-search.cc ├── speck-xor-threshold-search.cc ├── speck.cc ├── tea-add-ddt-search.cc ├── tea-add-threshold-search.cc ├── tea-f-add-pddt.cc ├── tea.cc ├── threefish-add.cc ├── threefish-xor.cc ├── threefish.cc ├── tweetcipher-ref.cc ├── xdp-add-diff-set.cc ├── xdp-add-pddt.cc ├── xdp-add-program.cc ├── xdp-add.cc ├── xdp-and.cc ├── xdp-rot-and.cc ├── xdp-tea-f-fk.cc ├── xdp-xtea-f-fk.cc ├── xlp-add.cc ├── xtea-add-threshold-search.cc ├── xtea-f-add-pddt.cc ├── xtea-f-xor-pddt.cc ├── xtea-xor-threshold-search.cc └── xtea.cc ├── tests ├── adp-arx-tests.cc ├── adp-mul-tests.cc ├── adp-rot-tests.cc ├── adp-rsh-xor-tests.cc ├── adp-shift-tests.cc ├── adp-tea-f-fk-ddt-tests.cc ├── adp-tea-f-fk-noshift-tests.cc ├── adp-tea-f-fk-tests.cc ├── adp-xor-count-odiff-tests.cc ├── adp-xor-fi-count-odiff-tests.cc ├── adp-xor-fi-tests.cc ├── adp-xor-pddt-tests.cc ├── adp-xor-tests.cc ├── adp-xor3-tests.cc ├── adp-xtea-f-fk-tests.cc ├── eadp-tea-f-tests.cc ├── graphviz-tests.cc ├── linear-code-tests-aux.cc ├── linear-code-tests.cc ├── marx-best-diff-search-tests.cc ├── marx-best-linear-search-tests.cc ├── max-adp-xor-fi-tests.cc ├── max-adp-xor-tests.cc ├── max-adp-xor3-set-tests.cc ├── max-adp-xor3-tests.cc ├── max-xdp-add-tests.cc ├── morus-tests.cc ├── salsa-tests.cc ├── simon-xor-threshold-search-tests.cc ├── speck-best-diff-search-tests.cc ├── speck-best-linear-search-tests.cc ├── speck-tests.cc ├── speck-xor-threshold-search-tests.cc ├── speckey-best-diff-search-tests.cc ├── speckey-best-linear-search-tests.cc ├── tea-add-ddt-search-tests.cc ├── tea-add-threshold-search-tests.cc ├── tea-f-add-pddt-tests.cc ├── threefish-tests.cc ├── tweetcipher-tests.cc ├── va-tests.cc ├── xdp-add-diff-set-tests.cc ├── xdp-add-pddt-tests.cc ├── xdp-add-tests.cc ├── xdp-and-tests.cc ├── xdp-rot-and-tests.cc ├── xdp-tea-f-fk-tests.cc ├── xdp-xtea-f-fk-tests.cc ├── xlp-add-tests.cc ├── xtea-add-threshold-search-tests.cc └── xtea-xor-threshold-search-tests.cc └── txt └── arxtrunc.pdf /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/Makefile -------------------------------------------------------------------------------- /bin/.dummy: -------------------------------------------------------------------------------- 1 | A dummy file to keep the directory non-empty. 2 | -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/copyright.txt -------------------------------------------------------------------------------- /doxygen.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/doxygen.log -------------------------------------------------------------------------------- /dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/dump.c -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/gpl.txt -------------------------------------------------------------------------------- /grep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/grep.sh -------------------------------------------------------------------------------- /gui/pygtk-hello-world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/gui/pygtk-hello-world.py -------------------------------------------------------------------------------- /images/threshold-search.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/images/threshold-search.eps -------------------------------------------------------------------------------- /images/threshold-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/images/threshold-search.jpg -------------------------------------------------------------------------------- /images/threshold-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/images/threshold-search.png -------------------------------------------------------------------------------- /include/add-approx.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/add-approx.hh -------------------------------------------------------------------------------- /include/adp-arx.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-arx.hh -------------------------------------------------------------------------------- /include/adp-mul.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-mul.hh -------------------------------------------------------------------------------- /include/adp-rot.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-rot.hh -------------------------------------------------------------------------------- /include/adp-rsh-xor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-rsh-xor.hh -------------------------------------------------------------------------------- /include/adp-shift.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-shift.hh -------------------------------------------------------------------------------- /include/adp-tea-f-fk-ddt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-tea-f-fk-ddt.hh -------------------------------------------------------------------------------- /include/adp-tea-f-fk-noshift.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-tea-f-fk-noshift.hh -------------------------------------------------------------------------------- /include/adp-tea-f-fk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-tea-f-fk.hh -------------------------------------------------------------------------------- /include/adp-xor-count-odiff.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-xor-count-odiff.hh -------------------------------------------------------------------------------- /include/adp-xor-fi-count-odiff.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-xor-fi-count-odiff.hh -------------------------------------------------------------------------------- /include/adp-xor-fi.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-xor-fi.hh -------------------------------------------------------------------------------- /include/adp-xor-pddt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-xor-pddt.hh -------------------------------------------------------------------------------- /include/adp-xor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-xor.hh -------------------------------------------------------------------------------- /include/adp-xor3.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-xor3.hh -------------------------------------------------------------------------------- /include/adp-xtea-f-fk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/adp-xtea-f-fk.hh -------------------------------------------------------------------------------- /include/bsdr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/bsdr.hh -------------------------------------------------------------------------------- /include/common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/common.hh -------------------------------------------------------------------------------- /include/dp-matrix-minimize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/dp-matrix-minimize.hh -------------------------------------------------------------------------------- /include/eadp-tea-f.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/eadp-tea-f.hh -------------------------------------------------------------------------------- /include/max-adp-arx.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/max-adp-arx.hh -------------------------------------------------------------------------------- /include/max-adp-xor-fi.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/max-adp-xor-fi.hh -------------------------------------------------------------------------------- /include/max-adp-xor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/max-adp-xor.hh -------------------------------------------------------------------------------- /include/max-adp-xor3-set.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/max-adp-xor3-set.hh -------------------------------------------------------------------------------- /include/max-adp-xor3.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/max-adp-xor3.hh -------------------------------------------------------------------------------- /include/max-xdp-add.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/max-xdp-add.hh -------------------------------------------------------------------------------- /include/salsa.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/salsa.hh -------------------------------------------------------------------------------- /include/simon-xor-best-trails.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/simon-xor-best-trails.hh -------------------------------------------------------------------------------- /include/simon-xor-ddt-search.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/simon-xor-ddt-search.hh -------------------------------------------------------------------------------- /include/simon-xor-threshold-search.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/simon-xor-threshold-search.hh -------------------------------------------------------------------------------- /include/simon.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/simon.hh -------------------------------------------------------------------------------- /include/speck-trails.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/speck-trails.hh -------------------------------------------------------------------------------- /include/speck-xor-best-trails.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/speck-xor-best-trails.hh -------------------------------------------------------------------------------- /include/speck-xor-threshold-search.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/speck-xor-threshold-search.hh -------------------------------------------------------------------------------- /include/speck.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/speck.hh -------------------------------------------------------------------------------- /include/tea-add-ddt-search.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/tea-add-ddt-search.hh -------------------------------------------------------------------------------- /include/tea-add-threshold-search.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/tea-add-threshold-search.hh -------------------------------------------------------------------------------- /include/tea-f-add-pddt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/tea-f-add-pddt.hh -------------------------------------------------------------------------------- /include/tea.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/tea.hh -------------------------------------------------------------------------------- /include/threefish-add.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/threefish-add.hh -------------------------------------------------------------------------------- /include/threefish-xor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/threefish-xor.hh -------------------------------------------------------------------------------- /include/threefish.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/threefish.hh -------------------------------------------------------------------------------- /include/xdp-add-diff-set.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xdp-add-diff-set.hh -------------------------------------------------------------------------------- /include/xdp-add-pddt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xdp-add-pddt.hh -------------------------------------------------------------------------------- /include/xdp-add.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xdp-add.hh -------------------------------------------------------------------------------- /include/xdp-and.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xdp-and.hh -------------------------------------------------------------------------------- /include/xdp-rot-and.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xdp-rot-and.hh -------------------------------------------------------------------------------- /include/xdp-tea-f-fk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xdp-tea-f-fk.hh -------------------------------------------------------------------------------- /include/xdp-xtea-f-fk.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xdp-xtea-f-fk.hh -------------------------------------------------------------------------------- /include/xlp-add.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xlp-add.hh -------------------------------------------------------------------------------- /include/xtea-add-threshold-search.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xtea-add-threshold-search.hh -------------------------------------------------------------------------------- /include/xtea-f-add-pddt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xtea-f-add-pddt.hh -------------------------------------------------------------------------------- /include/xtea-f-xor-pddt.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xtea-f-xor-pddt.hh -------------------------------------------------------------------------------- /include/xtea-xor-threshold-search.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xtea-xor-threshold-search.hh -------------------------------------------------------------------------------- /include/xtea.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/include/xtea.hh -------------------------------------------------------------------------------- /log/adp-xor-fi-count-odiff-matrices.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/log/adp-xor-fi-count-odiff-matrices.sage -------------------------------------------------------------------------------- /log/adp-xor-fi-matrices.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/log/adp-xor-fi-matrices.sage -------------------------------------------------------------------------------- /log/adp-xor-matrices.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/log/adp-xor-matrices.sage -------------------------------------------------------------------------------- /log/rc5-xdp-add-last-round-matrices.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/log/rc5-xdp-add-last-round-matrices.sage -------------------------------------------------------------------------------- /log/xdp-add-matrices.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/log/xdp-add-matrices.sage -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/logo.jpg -------------------------------------------------------------------------------- /main-page.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/main-page.dox -------------------------------------------------------------------------------- /makelogo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/makelogo.sh -------------------------------------------------------------------------------- /maketags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/maketags.sh -------------------------------------------------------------------------------- /obj/.dummy: -------------------------------------------------------------------------------- 1 | A dummy file to keep the directory non-empty. 2 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/readme.txt -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/runtests.sh -------------------------------------------------------------------------------- /src/add-approx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/add-approx.cc -------------------------------------------------------------------------------- /src/adp-arx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-arx.cc -------------------------------------------------------------------------------- /src/adp-lsh-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-lsh-program.cc -------------------------------------------------------------------------------- /src/adp-mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-mul.cc -------------------------------------------------------------------------------- /src/adp-rot-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-rot-program.cc -------------------------------------------------------------------------------- /src/adp-rot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-rot.cc -------------------------------------------------------------------------------- /src/adp-rsh-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-rsh-program.cc -------------------------------------------------------------------------------- /src/adp-rsh-xor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-rsh-xor.cc -------------------------------------------------------------------------------- /src/adp-shift.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-shift.cc -------------------------------------------------------------------------------- /src/adp-tea-f-fk-ddt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-tea-f-fk-ddt.cc -------------------------------------------------------------------------------- /src/adp-tea-f-fk-noshift.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-tea-f-fk-noshift.cc -------------------------------------------------------------------------------- /src/adp-tea-f-fk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-tea-f-fk.cc -------------------------------------------------------------------------------- /src/adp-xor-count-odiff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor-count-odiff.cc -------------------------------------------------------------------------------- /src/adp-xor-fi-count-odiff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor-fi-count-odiff.cc -------------------------------------------------------------------------------- /src/adp-xor-fi-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor-fi-program.cc -------------------------------------------------------------------------------- /src/adp-xor-fi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor-fi.cc -------------------------------------------------------------------------------- /src/adp-xor-pddt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor-pddt.cc -------------------------------------------------------------------------------- /src/adp-xor-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor-program.cc -------------------------------------------------------------------------------- /src/adp-xor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor.cc -------------------------------------------------------------------------------- /src/adp-xor3-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor3-program.cc -------------------------------------------------------------------------------- /src/adp-xor3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xor3.cc -------------------------------------------------------------------------------- /src/adp-xtea-f-fk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/adp-xtea-f-fk.cc -------------------------------------------------------------------------------- /src/bsdr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/bsdr.cc -------------------------------------------------------------------------------- /src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/common.cc -------------------------------------------------------------------------------- /src/eadp-tea-f-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/eadp-tea-f-program.cc -------------------------------------------------------------------------------- /src/eadp-tea-f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/eadp-tea-f.cc -------------------------------------------------------------------------------- /src/idea-ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/idea-ref.cc -------------------------------------------------------------------------------- /src/idea.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/idea.cc -------------------------------------------------------------------------------- /src/max-adp-arx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-arx.cc -------------------------------------------------------------------------------- /src/max-adp-xor-fi-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-xor-fi-program.cc -------------------------------------------------------------------------------- /src/max-adp-xor-fi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-xor-fi.cc -------------------------------------------------------------------------------- /src/max-adp-xor-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-xor-program.cc -------------------------------------------------------------------------------- /src/max-adp-xor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-xor.cc -------------------------------------------------------------------------------- /src/max-adp-xor3-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-xor3-program.cc -------------------------------------------------------------------------------- /src/max-adp-xor3-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-xor3-set.cc -------------------------------------------------------------------------------- /src/max-adp-xor3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-adp-xor3.cc -------------------------------------------------------------------------------- /src/max-eadp-tea-f-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-eadp-tea-f-program.cc -------------------------------------------------------------------------------- /src/max-xdp-add-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-xdp-add-program.cc -------------------------------------------------------------------------------- /src/max-xdp-add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/max-xdp-add.cc -------------------------------------------------------------------------------- /src/salsa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/salsa.cc -------------------------------------------------------------------------------- /src/simon-xor-ddt-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/simon-xor-ddt-search.cc -------------------------------------------------------------------------------- /src/simon-xor-threshold-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/simon-xor-threshold-search.cc -------------------------------------------------------------------------------- /src/simon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/simon.cc -------------------------------------------------------------------------------- /src/solve-gf2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/solve-gf2.cc -------------------------------------------------------------------------------- /src/speck-xor-ddt-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/speck-xor-ddt-search.cc -------------------------------------------------------------------------------- /src/speck-xor-threshold-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/speck-xor-threshold-search.cc -------------------------------------------------------------------------------- /src/speck.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/speck.cc -------------------------------------------------------------------------------- /src/tea-add-ddt-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/tea-add-ddt-search.cc -------------------------------------------------------------------------------- /src/tea-add-threshold-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/tea-add-threshold-search.cc -------------------------------------------------------------------------------- /src/tea-f-add-pddt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/tea-f-add-pddt.cc -------------------------------------------------------------------------------- /src/tea.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/tea.cc -------------------------------------------------------------------------------- /src/threefish-add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/threefish-add.cc -------------------------------------------------------------------------------- /src/threefish-xor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/threefish-xor.cc -------------------------------------------------------------------------------- /src/threefish.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/threefish.cc -------------------------------------------------------------------------------- /src/tweetcipher-ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/tweetcipher-ref.cc -------------------------------------------------------------------------------- /src/xdp-add-diff-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-add-diff-set.cc -------------------------------------------------------------------------------- /src/xdp-add-pddt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-add-pddt.cc -------------------------------------------------------------------------------- /src/xdp-add-program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-add-program.cc -------------------------------------------------------------------------------- /src/xdp-add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-add.cc -------------------------------------------------------------------------------- /src/xdp-and.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-and.cc -------------------------------------------------------------------------------- /src/xdp-rot-and.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-rot-and.cc -------------------------------------------------------------------------------- /src/xdp-tea-f-fk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-tea-f-fk.cc -------------------------------------------------------------------------------- /src/xdp-xtea-f-fk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xdp-xtea-f-fk.cc -------------------------------------------------------------------------------- /src/xlp-add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xlp-add.cc -------------------------------------------------------------------------------- /src/xtea-add-threshold-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xtea-add-threshold-search.cc -------------------------------------------------------------------------------- /src/xtea-f-add-pddt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xtea-f-add-pddt.cc -------------------------------------------------------------------------------- /src/xtea-f-xor-pddt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xtea-f-xor-pddt.cc -------------------------------------------------------------------------------- /src/xtea-xor-threshold-search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xtea-xor-threshold-search.cc -------------------------------------------------------------------------------- /src/xtea.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/src/xtea.cc -------------------------------------------------------------------------------- /tests/adp-arx-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-arx-tests.cc -------------------------------------------------------------------------------- /tests/adp-mul-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-mul-tests.cc -------------------------------------------------------------------------------- /tests/adp-rot-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-rot-tests.cc -------------------------------------------------------------------------------- /tests/adp-rsh-xor-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-rsh-xor-tests.cc -------------------------------------------------------------------------------- /tests/adp-shift-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-shift-tests.cc -------------------------------------------------------------------------------- /tests/adp-tea-f-fk-ddt-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-tea-f-fk-ddt-tests.cc -------------------------------------------------------------------------------- /tests/adp-tea-f-fk-noshift-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-tea-f-fk-noshift-tests.cc -------------------------------------------------------------------------------- /tests/adp-tea-f-fk-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-tea-f-fk-tests.cc -------------------------------------------------------------------------------- /tests/adp-xor-count-odiff-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-xor-count-odiff-tests.cc -------------------------------------------------------------------------------- /tests/adp-xor-fi-count-odiff-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-xor-fi-count-odiff-tests.cc -------------------------------------------------------------------------------- /tests/adp-xor-fi-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-xor-fi-tests.cc -------------------------------------------------------------------------------- /tests/adp-xor-pddt-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-xor-pddt-tests.cc -------------------------------------------------------------------------------- /tests/adp-xor-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-xor-tests.cc -------------------------------------------------------------------------------- /tests/adp-xor3-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-xor3-tests.cc -------------------------------------------------------------------------------- /tests/adp-xtea-f-fk-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/adp-xtea-f-fk-tests.cc -------------------------------------------------------------------------------- /tests/eadp-tea-f-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/eadp-tea-f-tests.cc -------------------------------------------------------------------------------- /tests/graphviz-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/graphviz-tests.cc -------------------------------------------------------------------------------- /tests/linear-code-tests-aux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/linear-code-tests-aux.cc -------------------------------------------------------------------------------- /tests/linear-code-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/linear-code-tests.cc -------------------------------------------------------------------------------- /tests/marx-best-diff-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/marx-best-diff-search-tests.cc -------------------------------------------------------------------------------- /tests/marx-best-linear-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/marx-best-linear-search-tests.cc -------------------------------------------------------------------------------- /tests/max-adp-xor-fi-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/max-adp-xor-fi-tests.cc -------------------------------------------------------------------------------- /tests/max-adp-xor-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/max-adp-xor-tests.cc -------------------------------------------------------------------------------- /tests/max-adp-xor3-set-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/max-adp-xor3-set-tests.cc -------------------------------------------------------------------------------- /tests/max-adp-xor3-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/max-adp-xor3-tests.cc -------------------------------------------------------------------------------- /tests/max-xdp-add-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/max-xdp-add-tests.cc -------------------------------------------------------------------------------- /tests/morus-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/morus-tests.cc -------------------------------------------------------------------------------- /tests/salsa-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/salsa-tests.cc -------------------------------------------------------------------------------- /tests/simon-xor-threshold-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/simon-xor-threshold-search-tests.cc -------------------------------------------------------------------------------- /tests/speck-best-diff-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/speck-best-diff-search-tests.cc -------------------------------------------------------------------------------- /tests/speck-best-linear-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/speck-best-linear-search-tests.cc -------------------------------------------------------------------------------- /tests/speck-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/speck-tests.cc -------------------------------------------------------------------------------- /tests/speck-xor-threshold-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/speck-xor-threshold-search-tests.cc -------------------------------------------------------------------------------- /tests/speckey-best-diff-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/speckey-best-diff-search-tests.cc -------------------------------------------------------------------------------- /tests/speckey-best-linear-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/speckey-best-linear-search-tests.cc -------------------------------------------------------------------------------- /tests/tea-add-ddt-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/tea-add-ddt-search-tests.cc -------------------------------------------------------------------------------- /tests/tea-add-threshold-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/tea-add-threshold-search-tests.cc -------------------------------------------------------------------------------- /tests/tea-f-add-pddt-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/tea-f-add-pddt-tests.cc -------------------------------------------------------------------------------- /tests/threefish-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/threefish-tests.cc -------------------------------------------------------------------------------- /tests/tweetcipher-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/tweetcipher-tests.cc -------------------------------------------------------------------------------- /tests/va-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/va-tests.cc -------------------------------------------------------------------------------- /tests/xdp-add-diff-set-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xdp-add-diff-set-tests.cc -------------------------------------------------------------------------------- /tests/xdp-add-pddt-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xdp-add-pddt-tests.cc -------------------------------------------------------------------------------- /tests/xdp-add-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xdp-add-tests.cc -------------------------------------------------------------------------------- /tests/xdp-and-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xdp-and-tests.cc -------------------------------------------------------------------------------- /tests/xdp-rot-and-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xdp-rot-and-tests.cc -------------------------------------------------------------------------------- /tests/xdp-tea-f-fk-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xdp-tea-f-fk-tests.cc -------------------------------------------------------------------------------- /tests/xdp-xtea-f-fk-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xdp-xtea-f-fk-tests.cc -------------------------------------------------------------------------------- /tests/xlp-add-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xlp-add-tests.cc -------------------------------------------------------------------------------- /tests/xtea-add-threshold-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xtea-add-threshold-search-tests.cc -------------------------------------------------------------------------------- /tests/xtea-xor-threshold-search-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/tests/xtea-xor-threshold-search-tests.cc -------------------------------------------------------------------------------- /txt/arxtrunc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vesselinux/yaarx/HEAD/txt/arxtrunc.pdf --------------------------------------------------------------------------------