Interface ICrypter

All Superinterfaces:
Function<byte[],byte[]>
All Known Implementing Classes:
Crypter, MessageDigestCrypter

public interface ICrypter extends Function<byte[],byte[]>
Transforms byte arrays to byte arrays.
Since:
3.23
Author:
Eike Stepper
  • Field Details

  • Method Details

    • getType

      String getType()
    • getParams

      String getParams()
    • apply

      byte[] apply(byte[] data)
      Specified by:
      apply in interface Function<byte[],byte[]>