[ALL] Switch naming of Hash, add new variants

This commit is contained in:
Matt Nadareski
2017-02-26 22:41:17 -08:00
parent 0c3d89dbde
commit 8f5a66c41d
6 changed files with 42 additions and 43 deletions

View File

@@ -244,11 +244,14 @@ namespace SabreTools.Helper.Data
/// Determine what hashes to strip from the DAT
/// </summary>
[Flags]
public enum StripHash
public enum Hash
{
MD5 = 0x01,
SHA1 = 0x02,
SHA256 = 0x04,
CRC = 0x0001,
MD5 = 0x0002,
SHA1 = 0x0004,
SHA256 = 0x0008,
SHA384 = 0x0010,
SHA512 = 0x0020,
}
#endregion