Implemented SpamSum fuzzy hashing.

This commit is contained in:
2015-04-19 01:27:17 +01:00
parent 5fbcf3e96e
commit 72e5c9983c
7 changed files with 563 additions and 3 deletions

View File

@@ -130,6 +130,10 @@ namespace DiscImageChef
HelpText = "Calculates SHA512.")]
public bool DoSHA512 { get; set; }
[Option('f', "spamsum", DefaultValue = true,
HelpText = "Calculates SpamSum fuzzy hash.")]
public bool DoSpamSum { get; set; }
[Option('i', "input", Required = true, HelpText = "Disc image.")]
public string InputFile { get; set; }
}