PdfRsaPrivateKeySigner constructor

PdfRsaPrivateKeySigner({
  1. required RSAPrivateKey privateKey,
  2. required List<Uint8List> certificates,
})

Creates a signer from an RSA private key and certificate chain.

Implementation

PdfRsaPrivateKeySigner({
  required RSAPrivateKey privateKey,
  required List<Uint8List> certificates,
})  : _privateKey = privateKey,
      _certificates = List<Uint8List>.unmodifiable(certificates);