RSACrypt
Encrypt and decrypt bytes or a string.
Functions
Link copied to clipboard
open fun decryptToBytes(privateKey: PrivateKey, message: String): Array<Byte>
Content copied to clipboard
Decrypt a base 64 encrypted message with an RSA private key.
Link copied to clipboard
open fun decryptToString(privateKey: PrivateKey, message: String): String
Content copied to clipboard
Decrypt a base 64 encrypted message with an RSA private key.
Link copied to clipboard