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