DigitalSignatureFieldCertifyOnNextSave Method (Byte, String) |
Must be called to prepare a signature for certification, which is done afterwards by calling Save. Throws if document already certified. Default document permission level is e_annotating_formfilling_signing_allowed. Throws if signature field already has a digital signature dictionary.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void CertifyOnNextSave(
byte[] in_pkcs12_buffer,
string in_password
)
Public Sub CertifyOnNextSave (
in_pkcs12_buffer As Byte(),
in_password As String
)
public:
virtual void CertifyOnNextSave(
[InAttribute] array<unsigned char>^ in_pkcs12_buffer,
[InAttribute] String^ in_password
) sealed
function CertifyOnNextSave(in_pkcs12_buffer, in_password);
Parameters
- in_pkcs12_buffer
- Type: SystemByte
A buffer of bytes containing the PKCS #12 private key certificate store to use to sign this digital signature. - in_password
- Type: SystemString
The password to use to parse the PKCS #12 buffer.
See Also