saltBytes method

CryptDataBuilder saltBytes(
  1. List<int> v
)

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

Implementation

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