PyCrypto requires RSA values to be long

This is at least true for PyCrypto 2.6.1
pull/1362/head
Ivan Lazar Miljenovic 4 years ago
parent e2e19fb50f
commit a1703e15d4

@ -310,7 +310,7 @@ def _load_crypto_pycrypto():
total = 0
for byte in bytes:
total = (total << 8) + byte
return total
return long(total)
def decrypt(self, data):
return self._rsa.decrypt(data)

Loading…
Cancel
Save