[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IReadOnlySignatureDetails.CertificateDigestValue

CertificateDigestValue Property

CertificateDigestValue

Gets the checksum of the certificate.

Use this property to read the certificate checksum bytes stored in the signature details returned by Details. Use CertificateDigestMethod to determine the digest algorithm associated with this checksum.

Declaration
byte[] CertificateDigestValue { get; }
ReadOnly Property CertificateDigestValue As Byte()
Examples
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
byte[] certificateDigestValue = details.CertificateDigestValue;