PdfSignature constructor
PdfSignature({
- String? signedName,
- String? locationInfo,
- String? reason,
- String? contactInfo,
- List<
PdfCertificationFlags> ? documentPermissions, - CryptographicStandard cryptographicStandard = CryptographicStandard.cms,
- DigestAlgorithm digestAlgorithm = DigestAlgorithm.sha256,
- PdfCertificate? certificate,
- TimestampServer? timestampServer,
- DateTime? signedDate,
Initializes a new instance of the PdfSignature class with the page and the signature name.
Implementation
PdfSignature(
{String? signedName,
String? locationInfo,
String? reason,
String? contactInfo,
List<PdfCertificationFlags>? documentPermissions,
CryptographicStandard cryptographicStandard = CryptographicStandard.cms,
DigestAlgorithm digestAlgorithm = DigestAlgorithm.sha256,
PdfCertificate? certificate,
TimestampServer? timestampServer,
DateTime? signedDate}) {
_helper = PdfSignatureHelper(this);
_init(
signedName,
locationInfo,
reason,
contactInfo,
documentPermissions,
cryptographicStandard,
digestAlgorithm,
certificate,
signedDate,
timestampServer);
}