PdfRsaPrivateKeySigner constructor
PdfRsaPrivateKeySigner({
- required RSAPrivateKey privateKey,
- 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);