getKeyFromBase64 static method

Crypt getKeyFromBase64(
  1. String base64, {
  2. dynamic ivs,
})

Implementation

static Crypt getKeyFromBase64(String base64, {ivs}) {
  return Crypt(Key(base64Decode(base64)), ivs: ivs);
}