Interface TextEncryptor


public interface TextEncryptor
Service interface for symmetric encryption of text strings.
  • Method Summary

    Modifier and Type
    Method
    Description
    decrypt(String encryptedText)
    Decrypt the encrypted text string.
    Encrypt the raw text string.
  • Method Details

    • encrypt

      String encrypt(String text)
      Encrypt the raw text string.
    • decrypt

      String decrypt(String encryptedText)
      Decrypt the encrypted text string.