Interface EncryptionService

All Known Implementing Classes:
ClientEncryptionService, EncryptionServiceImpl

public interface EncryptionService
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    decrypt(byte[] ciphertext)
     
    byte[]
    decryptFromHex(String ciphertextAsHex)
     
    byte[]
    encrypt(byte[] plaintext)
     
    byte[]
    encrypt(String plaintext)
     
  • Method Details

    • decrypt

      byte[] decrypt(byte[] ciphertext)
    • decryptFromHex

      byte[] decryptFromHex(String ciphertextAsHex)
    • encrypt

      byte[] encrypt(String plaintext)
    • encrypt

      byte[] encrypt(byte[] plaintext)