PDFDocAddStdSignatureHandler Method (String, String) |
Adds a standard (built-in) signature handler to the signature manager. This method will use cryptographic
algorithm based on Adobe.PPKLite/adbe.pkcs7.detached filter to sign a PDF.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public ulong AddStdSignatureHandler(
string pkcs12_keyfile,
string pkcs12_keypass
)
Public Function AddStdSignatureHandler (
pkcs12_keyfile As String,
pkcs12_keypass As String
) As ULong
public:
virtual unsigned long long AddStdSignatureHandler(
[InAttribute] String^ pkcs12_keyfile,
[InAttribute] String^ pkcs12_keypass
) sealed
function AddStdSignatureHandler(pkcs12_keyfile, pkcs12_keypass);
Parameters
- pkcs12_keyfile
- Type: SystemString
The private key certificate store to use. - pkcs12_keypass
- Type: SystemString
The passphrase for the provided private key.
Return Value
Type:
UInt64A unique ID representing the SignatureHandler within the SignatureManager.
See Also