init method

  1. @override
void init(
  1. covariant Pbkdf2Parameters params
)
override

Init the derivator with its initialization params. The type of CipherParameters depends on the algorithm being used (see the documentation of each implementation to find out more).

Implementation

@override
void init(covariant Pbkdf2Parameters params) {
  _params = params;
}