[Filetools, xxHash] Add xxHash as an option, currently not hooked up

This commit is contained in:
Matt Nadareski
2017-03-05 20:55:22 -08:00
parent c3f42732a2
commit 0617c242ea
4 changed files with 265 additions and 0 deletions

View File

@@ -262,6 +262,7 @@ namespace SabreTools.Helper.Data
SHA256 = SHA1 << 1,
SHA384 = SHA256 << 1,
SHA512 = SHA384 << 1,
xxHash = SHA512 << 1,
// Special combinations
Standard = CRC | MD5 | SHA1,