Table of Contents

Constructor PdfPublicKeyEncryptionHandler

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

PdfPublicKeyEncryptionHandler(X509Certificate2)

Creates a new instance of Public-Key Security encryption handler using the specified owner certificate.

public PdfPublicKeyEncryptionHandler(X509Certificate2 ownerCertificate)

Parameters

ownerCertificate X509Certificate2

The owner certificate to use while encrypting data.

Remarks

An owner certificate allows full (owner) access to the document. This unlimited access includes the ability to change the document's encryption and access permissions.

PdfPublicKeyEncryptionHandler(string, string)

Creates a new instance of Public-Key Security encryption handler with owner permissions using the specified key store file.

public PdfPublicKeyEncryptionHandler(string ownerKeyStorePath, string password)

Parameters

ownerKeyStorePath string

The path to the PFX / PKCS #12 key store file.

password string

The password to read the key store file.

Remarks

The certificate in the keystore is assumed to be an owner certificate.

An owner certificate allows full (owner) access to the document. This unlimited access includes the ability to change the document's encryption and access permissions.

PdfPublicKeyEncryptionHandler(Stream, string)

Creates a new instance of Public-Key Security encryption handler with owner permissions using the specified stream with key store contents.

public PdfPublicKeyEncryptionHandler(Stream ownerKeyStoreStream, string password)

Parameters

ownerKeyStoreStream Stream

The stream with the PFX / PKCS #12 key store contents.

password string

The password to read the key store stream.

Remarks

The certificate in the keystore is assumed to be an owner certificate.

An owner certificate allows full (owner) access to the document. This unlimited access includes the ability to change the document's encryption and access permissions.

PdfPublicKeyEncryptionHandler(X509Certificate2, PdfPermissions)

Creates a new instance of Public-Key Security encryption handler using the specified certificate and permissions.

public PdfPublicKeyEncryptionHandler(X509Certificate2 certificate, PdfPermissions permissions)

Parameters

certificate X509Certificate2

The certificate to use while encrypting data.

permissions PdfPermissions

The permissions to grant for the document recipient.

PdfPublicKeyEncryptionHandler(string, string, PdfPermissions)

Creates a new instance of Public-Key Security encryption handler with the specified permissions using the specified key store file.

public PdfPublicKeyEncryptionHandler(string keyStorePath, string password, PdfPermissions permissions)

Parameters

keyStorePath string

The path to the PFX / PKCS #12 key store file.

password string

The password to read the key store file.

permissions PdfPermissions

The permissions to grant for the document recipient.

PdfPublicKeyEncryptionHandler(Stream, string, PdfPermissions)

Creates a new instance of Public-Key Security encryption handler with the specified permissions using the specified stream with key store contents.

public PdfPublicKeyEncryptionHandler(Stream keyStoreStream, string password, PdfPermissions permissions)

Parameters

keyStoreStream Stream

The stream with the PFX / PKCS #12 key store contents.

password string

The password to read the key store stream.

permissions PdfPermissions

The permissions to grant for the document recipient.