[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IReadOnlySignatureDetails.CertificateDigestMethod

CertificateDigestMethod Property

CertificateDigestMethod

Gets the hash method of the checksum of the certificate.

Use this property to read the digest algorithm name stored with the certificate checksum in the signature details returned by Details.

Declaration
string CertificateDigestMethod { get; }
ReadOnly Property CertificateDigestMethod As String
Examples
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
string certificateDigestMethod = details.CertificateDigestMethod;