I got some Python code that seems to use a public key for decrypting data. The data is probably encrypted using the corresponding private key. (I am not sure about it, because encryption with private key is normally called signing).
The Python code given below works fine if we have an appropriate public key file:
def decryptUsingPubKey(b64encData):
dcdData = base64.b64decode(b64encData)
block = dcdData[0:512]
rsaObj = M2Crypto.RSA.load_pub_key(keyFile)
padarg = M2Crypto.RSA.pkcs1_padding
decData = rsaObj.public_decrypt(block, padarg)
What does the method public_decrypt(block, padarg) actually do? Does it decrypt some encrypted data, or does it just verify it?
And what is its alternate in C#?