decrypt abstract method

String decrypt(
  1. String privKey,
  2. String pubKey,
  3. String cipherText
)

Decrypts the cipherText using the private key privKey of the receiver and the public key pubKey of the sender.

Returns the decrypted message in the form of a string.

Implementation

String decrypt(String privKey, String pubKey, String cipherText);