hashBytes method

CryptDataBuilder hashBytes(
  1. List<int> v
)

Set the output hash bytes using standard Base-64 codecs without padding.

Implementation

CryptDataBuilder hashBytes(List<int> v) {
  _hash = toBase64(v, padding: false);
  return this;
}