getIV static method

IV getIV(
  1. String? ivBase64
)

Implementation

static IV getIV(String? ivBase64) {
  if (ivBase64 == null) {
    // From the bad old days when we weren't setting IVs
    return IV(Uint8List(16));
  } else {
    return IV.fromBase64(ivBase64);
  }
}