├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── UNLICENSE ├── azure-pipelines.yml ├── include ├── aes.hpp ├── base64.hpp ├── crc.hpp ├── fnv1.hpp ├── md5.hpp ├── sha1.hpp ├── sha2.hpp ├── utf8.hpp └── uuid.hpp ├── sonar-project.properties └── test ├── CMakeLists.txt ├── Makefile ├── aes_tests.cpp ├── base64_tests.cpp ├── crc_tests.cpp ├── fnv1_tests.cpp ├── main.cpp ├── md5_tests.cpp ├── sha1_tests.cpp ├── sha2_tests.cpp ├── test.sln ├── test.vcxproj ├── test.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── utf8_tests.cpp └── uuid_tests.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/UNLICENSE -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /include/aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/aes.hpp -------------------------------------------------------------------------------- /include/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/base64.hpp -------------------------------------------------------------------------------- /include/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/crc.hpp -------------------------------------------------------------------------------- /include/fnv1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/fnv1.hpp -------------------------------------------------------------------------------- /include/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/md5.hpp -------------------------------------------------------------------------------- /include/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/sha1.hpp -------------------------------------------------------------------------------- /include/sha2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/sha2.hpp -------------------------------------------------------------------------------- /include/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/utf8.hpp -------------------------------------------------------------------------------- /include/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/include/uuid.hpp -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/aes_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/aes_tests.cpp -------------------------------------------------------------------------------- /test/base64_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/base64_tests.cpp -------------------------------------------------------------------------------- /test/crc_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/crc_tests.cpp -------------------------------------------------------------------------------- /test/fnv1_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/fnv1_tests.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/md5_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/md5_tests.cpp -------------------------------------------------------------------------------- /test/sha1_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/sha1_tests.cpp -------------------------------------------------------------------------------- /test/sha2_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/sha2_tests.cpp -------------------------------------------------------------------------------- /test/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/test.sln -------------------------------------------------------------------------------- /test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/test.vcxproj -------------------------------------------------------------------------------- /test/test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/utf8_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/utf8_tests.cpp -------------------------------------------------------------------------------- /test/uuid_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elnormous/hlibs/HEAD/test/uuid_tests.cpp --------------------------------------------------------------------------------