├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── FAQ ├── Makefile ├── NEWS ├── README ├── README.md ├── bin └── .keep ├── doc └── fxor │ └── .keep ├── man └── fxor.1 ├── scripts └── opssl_rand └── src ├── fxor.c ├── fxor.h ├── fxor_exits.h ├── fxor_stream_xor.c ├── fxor_stream_xor.h └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/ChangeLog -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/FAQ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/README.md -------------------------------------------------------------------------------- /bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/fxor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/fxor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/man/fxor.1 -------------------------------------------------------------------------------- /scripts/opssl_rand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/scripts/opssl_rand -------------------------------------------------------------------------------- /src/fxor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/src/fxor.c -------------------------------------------------------------------------------- /src/fxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/src/fxor.h -------------------------------------------------------------------------------- /src/fxor_exits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/src/fxor_exits.h -------------------------------------------------------------------------------- /src/fxor_stream_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/src/fxor_stream_xor.c -------------------------------------------------------------------------------- /src/fxor_stream_xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/src/fxor_stream_xor.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abderraouf-adjal/fxor/HEAD/src/main.c --------------------------------------------------------------------------------