VerificationOptionsAddTrustedCertificate Method (Byte) |
Adds a certificate to the store of trusted certificates inside this options object. This overload uses the e_default_trust CertificateTrustFlag, which matches Acrobat's behaviour, to determine the trust level of the certificate.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void AddTrustedCertificate(
byte[] in_certificate_data
)
Public Sub AddTrustedCertificate (
in_certificate_data As Byte()
)
public:
virtual void AddTrustedCertificate(
[InAttribute] array<unsigned char>^ in_certificate_data
) sealed
function AddTrustedCertificate(in_certificate_data);
Parameters
- in_certificate_data
- Type: SystemByte
a buffer consisting of the data of an X.509 public-key certificate encoded in binary DER (Distinguished Encoding Rules) format, or in PEM (appropriate Privacy-Enhanced Mail header+Base64 encoded DER+appropriate footer) format
See Also