some more speed ups for hash cracking

This commit is contained in:
Miroslav Stampar
2011-11-02 09:57:42 +00:00
parent 2f355db230
commit ea125d820d
2 changed files with 22 additions and 8 deletions

View File

@@ -75,3 +75,9 @@ class HashDB(object):
raise
else:
break
def beginTransaction(self):
self.cursor.execute('BEGIN TRANSACTION')
def endTransaction(self):
self.cursor.execute('END TRANSACTION')