├── .gitignore ├── LICENSE ├── Makefile ├── README ├── README.md ├── crc.c ├── crc.h ├── crc_cable.c ├── crc_cable.h ├── crc_ether.c ├── crc_ether.h ├── crc_rnc.c ├── crc_rnc.h ├── crc_sctp.c ├── crc_sctp.h ├── crc_tcpip.c ├── crc_tcpip.h ├── crc_wimax.c ├── crc_wimax.h ├── crcext.h ├── crcr.c ├── crcr.h ├── main.c └── types.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/README.md -------------------------------------------------------------------------------- /crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc.c -------------------------------------------------------------------------------- /crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc.h -------------------------------------------------------------------------------- /crc_cable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_cable.c -------------------------------------------------------------------------------- /crc_cable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_cable.h -------------------------------------------------------------------------------- /crc_ether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_ether.c -------------------------------------------------------------------------------- /crc_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_ether.h -------------------------------------------------------------------------------- /crc_rnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_rnc.c -------------------------------------------------------------------------------- /crc_rnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_rnc.h -------------------------------------------------------------------------------- /crc_sctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_sctp.c -------------------------------------------------------------------------------- /crc_sctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_sctp.h -------------------------------------------------------------------------------- /crc_tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_tcpip.c -------------------------------------------------------------------------------- /crc_tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_tcpip.h -------------------------------------------------------------------------------- /crc_wimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_wimax.c -------------------------------------------------------------------------------- /crc_wimax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crc_wimax.h -------------------------------------------------------------------------------- /crcext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crcext.h -------------------------------------------------------------------------------- /crcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crcr.c -------------------------------------------------------------------------------- /crcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/crcr.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/main.c -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/soft-crc/HEAD/types.h --------------------------------------------------------------------------------