[]
type Pkcs7Content = object;
Defines properties an existing PDF binary signature that is stored in the /Contents property of the PDF signature dictionary.
encryptionAlgorithm: string;
The name of the encryption algorithm used in the signature.
encryptionAlgorithmOid: string;
The OID of the encryption algorithm used in the signature.
hashAlgorithm: string;
The name of the HASH algorithm used in the signature.
hashAlgorithmOid: string;
The OID of the HASH algorithm used in the signature.
isTsp: boolean;
Indicating whether the signature is a PAdES LTV time-stamp.
signatureData: Uint8Array;
The signature data.
signingCertificateChainPem: string[];
The chain of certificates used to create the signature. The first certificate in the list is the signing certificate.
optional signingTime?: Date;
The signing time that is stored in the signature, can be undefined if the binary signature does not contain a signing time.
valueValid: boolean;
Indicating whether the signature is correct and corresponds to the signed data.