Interface CipherService

All Known Implementing Classes:
CipherServiceImpl

public interface CipherService
  • Method Details

    • getSecureRandom

      Random getSecureRandom()
    • cipherFromString

      byte[] cipherFromString(String text)
    • unCipherToString

      String unCipherToString(byte[] rawData)
    • cipherFromData

      byte[] cipherFromData(byte[] clearData)
      Parameters:
      clearData - will be wipe after call.
    • unCipherToData

      byte[] unCipherToData(byte[] rawData)
    • computeSHA3FromString

      String computeSHA3FromString(String text)