encrypt function

String encrypt(
  1. String hexString,
  2. CipherBase cipher
)

Implementation

String encrypt(String hexString, CipherBase cipher) =>
    encode(cipher.encrypt(decode(hexString)));