I tried this code to encrypt a file:
from cryptoshop import encryptfile
from cryptoshop import decryptfile
result1 = encryptfile(filename="test", passphrase="mypassphrase",algo="srp")
print(result1)
But I got this error:
No module named botan
How can I install botan module?
MY OS : WINDOWS
MY PYTHON VERSION : 3.6.3
Please write it step by step.
PS: I found this in cryptoshop module:
try:
import botan
except:
print("Please install the last version of Botan crypto library.")
print("http://botan.randombit.net/#download")
print("For Linux users, try to find it in your package manager.")
sys.exit(0)
I downloaded but how can I install it?