DigitalSignatureCollection Klasse
DigitalSignatureCollection Klasse
Stellt eine Sammlung digitaler Signaturen bereit, die an ein Dokument angehängt sind.
Der Typ DigitalSignatureCollection macht die folgenden Member verfügbar:
Konstrukteure
Konstrukteur | Beschreibung |
---|---|
DigitalSignatureCollection() | Der Konstruktor von DigitalSignatureCollection. |
Methoden
Methode | Beschreibung |
---|---|
add(digital_signature) | Fügen Sie DigitalSignatureCollection eine Signatur hinzu. |
Beispiel
Das folgende Beispiel zeigt, wie die digitale Signatur validiert wird.
from aspose.cells import Workbook
# workbook from a signed source file
signedWorkbook = Workbook(r"signedFile.xlsx")
# wb.IsDigitallySigned is true when the workbook is signed already.
print(signedWorkbook.is_digitally_signed)
# get digitalSignature collection from workbook
existingDsc = signedWorkbook.get_digital_signature()
for existingDs in existingDsc:
print(existingDs.comments)
print(existingDs.sign_time)
print(existingDs.is_valid)