rsaAesWrappedKeyAsBytes property

List<int> get rsaAesWrappedKeyAsBytes

Implementation

core.List<core.int> get rsaAesWrappedKeyAsBytes =>
    convert.base64.decode(rsaAesWrappedKey!);
set rsaAesWrappedKeyAsBytes (List<int> bytes_)

Implementation

set rsaAesWrappedKeyAsBytes(core.List<core.int> bytes_) {
  rsaAesWrappedKey = convert.base64
      .encode(bytes_)
      .replaceAll('/', '_')
      .replaceAll('+', '-');
}