Package encryption

Class RSAEncryption

java.lang.Object
encryption.RSAEncryption

public class RSAEncryption extends Object
  • Constructor Details

    • RSAEncryption

      public RSAEncryption()
  • Method Details

    • getPrivateKey

      public PrivateKey getPrivateKey()
    • getPublicKey

      public PublicKey getPublicKey()
    • rsaDecrypt

      public String rsaDecrypt(String encryptedMessage, PrivateKey privateKey)
      Decrypts a message with the RSA encryption algorithm
      Parameters:
      encryptedMessage - the message to be decrypted
      privateKey - the private key to decrypt the message
      Returns:
      the decrypted string
    • rsaEncrypt

      public String rsaEncrypt(byte[] string, PublicKey publicKey)
      Encrypts a string using RSA encryption algorithm
      Parameters:
      string - the string to be encrypted
      publicKey - the public key to be used for encrypting
      Returns:
      The encrypted string
    • keyFromString

      public Key keyFromString(String key)