version method

CryptDataBuilder version(
  1. String v
)

Set the algorithm version.

The value for the version must be a sequence of characters in: [0-9].

It is recommended to use a default version.

Implementation

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