Need to convert following python Signature verification code to Andorid?
I create to python3 application generat the RSA key pairs.
from Crypto.PublicKey import RSA
print(“–Private Key Generate–“)
key = RSA.generate(2048)
private_key = key.export_key()
file_out = open(“key/private.pem”, “wb”)
file_out…. Continue reading Need to convert following python Signature verification code to Andorid?