version method

CryptDataBuilder version(
  1. String v
)

Set the algorithm version.

The value for the version must be a sequence of decimal digits ([0-9]) without leading zeros.

It is recommended to use a default version.

Implementation

CryptDataBuilder version(String v) {
  _version = v;
  return this;
}