[ALL] Add infrastructure for SHA384, SHA512

This commit is contained in:
Matt Nadareski
2017-02-26 23:12:20 -08:00
parent 2da7171951
commit d3111add08
5 changed files with 44 additions and 2 deletions

View File

@@ -252,6 +252,10 @@ namespace SabreTools.Helper.Data
SHA256 = 0x0008,
SHA384 = 0x0010,
SHA512 = 0x0020,
// Special combinations
Standard = CRC & MD5 & SHA1,
DeepHashes = MD5 & SHA1 & SHA256 & SHA384 & SHA512,
}
#endregion