Some test text!

Search
Hamburger Icon

Xamarin / Guides / Apryse Custom Security Handler

Apryse Custom Security Handler in Xamarin

The Apryse Custom Security Handler provides a means to encrypt files in a way that cannot be decrypted by other applications. This makes it especially suitable for Digital Rights Management (DRM) use cases. This is an alternative to defining your own custom encryption method. In particular using the Apryse Custom Security Handler is much simpler as it comes built-in with Apryse SDK.

Like other encryption methods a password is required to encrypt and decrypt the document. This custom security handler also requires the application choose a unique unsigned integer custom id (typically one per application) of their choice to encrypt and decrypt the document. Using this unique id provides an extra level of security as even other applications based on Apryse SDK will not typically be configured to open files secured with that particular id.

Encrypting an Apryse Custom secured document using the password and application custom id

The first step before encrypting is to choose an application custom id. A typical way to create this is to use a random generator to create a 32-bit number. This number would then be used throughout your document workflow.

Once that is done, the document can be encrypted:

// Open the document
PDFDoc doc = new PDFDoc(filename);

// Create Apryse custom security handler with a custom id. Replace this with your own integer
PDFTronCustomSecurityHandler custom_handler = new PDFTronCustomSecurityHandler(my_custom_id);

// Set a new password required to open a document
custom_handler.ChangeUserPassword(my_password);

// Note: document takes the ownership of custom_handler.
doc.SetSecurityHandler(custom_handler);

// Save the encrypted document
doc.Save(output_filename, SDFDoc.SaveOptions.e_remove_unused);

Encrypt and Decrypt PDF Files
Full sample code which illustrates some of our encryption support.

Decrypting an Apryse Custom secured document using the password and application custom id

The same application custom id and password using during encryption are required for decryption. Failing to provide the correct password or application custom id will prevent opening the encrypted document.

To decrypt a PDF with Apryse Custom security:

// Register the Apryse Custom Security handler with the same custom id used in encryption.
// Calling this function is a requirement to load files encrypted with PDFTronCustomSecurityHandler.
PDFNet.AddPDFTronCustomHandler(my_custom_id);

PDFDoc doc_enc = new PDFDoc(filename);
if (doc_enc.InitStdSecurityHandler(my_password)) {
  // The password is correct! Document can now be used for reading and editing
}

Encrypt and Decrypt PDF Files
Full sample code which illustrates some of our encryption support.

Get the answers you need: Chat with us