RSASigner constructor

RSASigner(
  1. RSASignDigest digest, {
  2. RSAPublicKey? publicKey,
  3. RSAPrivateKey? privateKey,
})

Implementation

RSASigner(this.digest, {super.publicKey, super.privateKey})
    : _digestId = _digestIdFactoryMap[digest]!.id,
      _digestCipher = _digestIdFactoryMap[digest]!.factory();