decodeB64 method

String decodeB64(
  1. String ciphertext
)

Implementation

String decodeB64(String ciphertext) {
  var b = engine..init(false, utf8ToWords(key));
  var result = b.process(parseBase64(ciphertext));
  engine.reset();
  return wordsToUtf8(result);
}