Package encryption
Class RSAEncryption
java.lang.Object
encryption.RSAEncryption
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionkeyFromString(String key)
rsaDecrypt(String encryptedMessage, PrivateKey privateKey)
Decrypts a message with the RSA encryption algorithmrsaEncrypt(byte[] string, PublicKey publicKey)
Encrypts a string using RSA encryption algorithm
-
Constructor Details
-
RSAEncryption
public RSAEncryption()
-
-
Method Details
-
getPrivateKey
-
getPublicKey
-
rsaDecrypt
Decrypts a message with the RSA encryption algorithm- Parameters:
encryptedMessage
- the message to be decryptedprivateKey
- the private key to decrypt the message- Returns:
- the decrypted string
-
rsaEncrypt
Encrypts a string using RSA encryption algorithm- Parameters:
string
- the string to be encryptedpublicKey
- the public key to be used for encrypting- Returns:
- The encrypted string
-
keyFromString
-