ExternalSignature.ExternalSignature

ExternalSignature(X509Certificate2)

Creates a detached PKCS#7Detached signature using a X509Certificate2. It supports usb smartcards, tokens without exportable private keys.

public ExternalSignature(X509Certificate2 certificate)
ParameterTypeDescription
certificateX509Certificate2The certificate with the private key

See Also


ExternalSignature(string, bool)

Creates a PKCS#7 (detached) signature using a X509Certificate2 as base64 string.

public ExternalSignature(string base64, bool detached)
ParameterTypeDescription
base64StringX509Certificate2 as base64 string.
detachedBooleanIs detached.

See Also