Sample code for 30+ languages & platforms
Chilkat2-Python

Example: Crypt2.ClearSigningCerts method

Demonstrates how to call the ClearSigningCerts method.

Chilkat Chilkat2-Python Downloads

Chilkat2-Python
import chilkat2

success = False

crypt = chilkat2.Crypt2()
success = False

# Tell the crypt object to use 3 certificates.
# Do this by calling AddSigningCert for each certificate.

cert1 = chilkat2.Cert()
# ...
# Load the cert from a source such as a .pfx/.p12 file, smart card, USB token, Apple keychain, Windows certificate store, etc.
# ...
crypt.AddSigningCert(cert1)

cert2 = chilkat2.Cert()
# ...
crypt.AddSigningCert(cert2)

cert3 = chilkat2.Cert()
# ...
crypt.AddSigningCert(cert3)

bd = chilkat2.BinData()
# ...

success = crypt.OpaqueSignBd(bd)

# Let's say we now want to sign something else with different certs..
# First clear the signing certs.
crypt.ClearSigningCerts()

cert4 = chilkat2.Cert()
# ...
crypt.AddSigningCert(cert4)

cert5 = chilkat2.Cert()
# ...
crypt.AddSigningCert(cert5)

# ...
# ...

# Sign using cert4 and cert5.
success = crypt.OpaqueSignBd(bd)