namespace MPF.Core.Data { /// /// Available hashing types /// public enum Hash { CRC32, #if NET6_0_OR_GREATER CRC64, #endif MD5, SHA1, SHA256, SHA384, SHA512, #if NET6_0_OR_GREATER XxHash32, XxHash64, #endif } /// /// Drive type for dumping /// public enum InternalDriveType { Optical, Floppy, HardDisk, Removable, } /// /// Program that is being used to dump media /// public enum InternalProgram { NONE = 0, // Dumping support Aaru, DiscImageCreator, Redumper, // Verification support only CleanRip, DCDumper, PS3CFW, UmdImageCreator, } /// /// Log level for output /// public enum LogLevel { USER, VERBOSE, ERROR, SECRET, } }