hashBytes method
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;
}
Set the output hash bytes using standard Base-64 codecs without padding.
CryptDataBuilder hashBytes(List<int> v) {
_hash = toBase64(v, padding: false);
return this;
}