-
Notifications
You must be signed in to change notification settings - Fork 0
/
principal.py
103 lines (86 loc) · 2.95 KB
/
principal.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
__author__ = 'Alejandro Maestre'
import hashlib
class FirmasHash():
""" Esté módulo permite generar firmas hash de cualquier tipo de archivo independientemente de su tamaño así como
guardarlas en un archivo de texto"""
def __init__(self):
print("1 - MD5")
print("2 - sh1")
print("3 - sh256")
print("4 - sh512")
print("5 - Salir")
self.opcion = input("> ")
if self.opcion == "1":
archivo = input("nombre de archivo: ")
FirmasHash.md5(archivo)
FirmasHash()
elif self.opcion == "2":
archivo = input("nombre de archivo: ")
FirmasHash.sh1(archivo)
FirmasHash()
elif self.opcion == "3":
archivo = input("nombre de archivo: ")
FirmasHash.sha256(archivo)
FirmasHash()
elif self.opcion == "4":
archivo = input("nombre de archivo: ")
FirmasHash.sha512(archivo)
FirmasHash()
elif self.opcion == "5":
exit()
else:
print("Elige una opción válida")
FirmasHash()
def md5(self):
BLOCKSIZE = 65536
hasher = hashlib.md5()
with open(self, 'rb') as afile:
buf = afile.read(BLOCKSIZE)
while len(buf) > 0:
hasher.update(buf)
buf = afile.read(BLOCKSIZE)
print("MD5: ")
print(hasher.hexdigest())
archivo = open("firmashash.txt", "a")
archivo.write("MD5: " + hasher.hexdigest() + "\n")
archivo.close()
def sh1(self):
BLOCKSIZE = 65536
hasher = hashlib.sha1()
with open(self, 'rb') as afile:
buf = afile.read(BLOCKSIZE)
while len(buf) > 0:
hasher.update(buf)
buf = afile.read(BLOCKSIZE)
print("SHA1: ")
print(hasher.hexdigest())
archivo = open("firmashash.txt", "a")
archivo.write("sh1: " + hasher.hexdigest() + "\n")
archivo.close()
def sha256(self):
BLOCKSIZE = 65536
hasher = hashlib.sha256()
with open(entrada, 'rb') as afile:
buf = afile.read(BLOCKSIZE)
while len(buf) > 0:
hasher.update(buf)
buf = afile.read(BLOCKSIZE)
print("SHA256: ")
print(hasher.hexdigest())
archivo = open("firmashash.txt", "a")
archivo.write("SHA256: " + hasher.hexdigest() + "\n")
archivo.close()
def sha512(self):
BLOCKSIZE = 65536
hasher = hashlib.sha512()
with open(self, 'rb') as afile:
buf = afile.read(BLOCKSIZE)
while len(buf) > 0:
hasher.update(buf)
buf = afile.read(BLOCKSIZE)
print("SHA512: ")
print(hasher.hexdigest())
archivo = open("firmashash.txt", "a")
archivo.write("SHA512: " + hasher.hexdigest() + "\n")
archivo.close()
entrada = FirmasHash()