init method
Init the signer with its initialization params
. The type of CipherParameters depends on the algorithm being used (see
the documentation of each implementation to find out more).
Use the argument forSigning
to tell the signer if you want to generate or verify signatures.
Implementation
@override
void init(bool forSigning, CipherParameters params) {
signer.init(forSigning, params);
}