├── .gitignore ├── LICENSE_A2LLVM ├── LICENSE_CC0 ├── LICENSE_MIT ├── README.md ├── halfsiphash.c ├── halfsiphash.h ├── makefile ├── siphash.c ├── siphash.h ├── test.c ├── testmain.c └── vectors.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE_A2LLVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/LICENSE_A2LLVM -------------------------------------------------------------------------------- /LICENSE_CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/LICENSE_CC0 -------------------------------------------------------------------------------- /LICENSE_MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/LICENSE_MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/README.md -------------------------------------------------------------------------------- /halfsiphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/halfsiphash.c -------------------------------------------------------------------------------- /halfsiphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/halfsiphash.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/makefile -------------------------------------------------------------------------------- /siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/siphash.c -------------------------------------------------------------------------------- /siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/siphash.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/test.c -------------------------------------------------------------------------------- /testmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/testmain.c -------------------------------------------------------------------------------- /vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veorq/SipHash/HEAD/vectors.h --------------------------------------------------------------------------------