From dbfebf636f6ad37939c06f1811015f5b192c4936 Mon Sep 17 00:00:00 2001 From: JohnE Date: Thu, 12 Nov 2015 14:40:11 -0800 Subject: [PATCH] WIP: MD5 indexing --- dbfp.py | 25 ------------------------- libs/fingerprint_comp.py | 23 ----------------------- 2 files changed, 48 deletions(-) delete mode 100644 libs/fingerprint_comp.py diff --git a/dbfp.py b/dbfp.py index 701320d..8bb6e3f 100644 --- a/dbfp.py +++ b/dbfp.py @@ -127,31 +127,6 @@ def parseArgs(): else: parser.print_help() - # return - - - # if (args.pull): - # fingerprintDir() - # return - - # if (args.file is None) or (args.fp is None) or (args.pull is None): - # parser.print_help() - # return - - # # compare a sqlite database file to all fingerprints - # if (args.fp and args.fpdir): - # compareFingerprintDir(args.file, args.fp, args.fpdir) - # return - - # # compare a sqlite database file to a fingerprint - # if (args.fp): - # compareFingerprint(args.file, args.fp) - # return - - # # create a fingerprint from the sqlite file - # filename = toolbox.ToolBox.parseFilename(args.file) - # fileout = filename + "_" + timestr + '.json' - # createFingerprint(args.file, fileout, args.verbose, args.app_name, args.app_version, args.notes) if __name__ == "__main__": diff --git a/libs/fingerprint_comp.py b/libs/fingerprint_comp.py deleted file mode 100644 index 188bdc7..0000000 --- a/libs/fingerprint_comp.py +++ /dev/null @@ -1,23 +0,0 @@ -# -# -# -from libs import fingerprint - - -class FingerprintRunner: - """ - Compare Finger Prints from a directory - """ - - # - def __init__(self): - return - - # - def dirCompare(self, folder): - return - - - def compareFingerprint(self, fp1, fp2): - pass -