sha512AsBytes property

List<int> sha512AsBytes

Implementation

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

Implementation

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