saltBytes method
Set the salt bytes using standard Base-64 codecs without padding.
Implementation
CryptDataBuilder saltBytes(List<int> v) {
_salt = toBase64(v, padding: false);
return this;
}
Set the salt bytes using standard Base-64 codecs without padding.
CryptDataBuilder saltBytes(List<int> v) {
_salt = toBase64(v, padding: false);
return this;
}