![]() |
|
[HC Official] Hash Algorithm Identifier v3.3 - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools) +--- Thread: [HC Official] Hash Algorithm Identifier v3.3 (/Thread-HC-Official-Hash-Algorithm-Identifier-v3-3) |
RE: Hash Algorithm Identifier v2.1 - Psycho_Coder - 02-21-2014 version 2.2 - Added support for exception handling and keyboard interruption. RE: Hash Algorithm Identifier v2.1 - Psycho_Coder - 02-21-2014 version 2.2 - Added support for exception handling and keyboard interruption. RE: Hash Algorithm Identifier v2.1 - chmod - 02-21-2014 Looking good I had a quick test of it and must say it's a vast improvement from the one found on Google code, much cleaner RE: Hash Algorithm Identifier v2.1 - chmod - 02-21-2014 Looking good I had a quick test of it and must say it's a vast improvement from the one found on Google code, much cleaner RE: Hash Algorithm Identifier v2.1 - Psycho_Coder - 02-21-2014 Tool Updated. New Version 3.2. Major changes made in the code. Added Support for 38 more hashes. Now it identifies 144 hashes. Read Changelog https://github.com/PsychoCoderHC/Hash-Algorithm-Identifier/blob/master/CHANGELOG.md I wanna make it the best tool available on the web to identify hashes
RE: Hash Algorithm Identifier v2.1 - Psycho_Coder - 02-21-2014 Tool Updated. New Version 3.2. Major changes made in the code. Added Support for 38 more hashes. Now it identifies 144 hashes. Read Changelog https://github.com/PsychoCoderHC/Hash-Algorithm-Identifier/blob/master/CHANGELOG.md I wanna make it the best tool available on the web to identify hashes
RE: Hash Algorithm Identifier v2.1 - Psycho_Coder - 02-21-2014 Anyone who is willing to compile the tool from source and wants to get the list of the hashes, then write the function code given below in the tool code and call the function from main(). Code: def printAllHashSupported():
ress = []
for item in HASHES:
ress += [item[0]] if ( type(item[0]) is str ) else item[0]
ress.sort()
for i in range(int(len(ress))):
print("* " + ress[i])
print(len(ress))RE: Hash Algorithm Identifier v2.1 - Psycho_Coder - 02-21-2014 Anyone who is willing to compile the tool from source and wants to get the list of the hashes, then write the function code given below in the tool code and call the function from main(). Code: def printAllHashSupported():
ress = []
for item in HASHES:
ress += [item[0]] if ( type(item[0]) is str ) else item[0]
ress.sort()
for i in range(int(len(ress))):
print("* " + ress[i])
print(len(ress))RE: Hash Algorithm Identifier v3.2 - Psycho_Coder - 02-22-2014 Minor update 6 hashes added. V3.3 RE: Hash Algorithm Identifier v3.2 - Psycho_Coder - 02-22-2014 Minor update 6 hashes added. V3.3 |