decrypt function

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

Implementation

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