sha384AsBytes property

List<int> sha384AsBytes

Implementation

core.List<core.int> get sha384AsBytes => convert.base64.decode(sha384!);
void sha384AsBytes=(List<int> bytes_)

Implementation

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