HTML to PDF Converter for .NET - Free Converter Application
 PDF Merge/Split - PDF Security - RTF to PDF Converter - Charts

 
Skip Navigation Links
Home
PDF ToolsExpand PDF Tools
Reporting ToolsExpand Reporting Tools
Online DemoExpand Online Demo
Download
Buy NowExpand Buy Now
SupportExpand Support
ContactExpand Contact
 

PDF Security Library for .NET 2.0

The PDF Security library for .NET can be linked into any .NET application, either ASP.NET web sites or Windows Forms applications, to add pdf encryption capabilities to your application.

The Winnovative PDF security for .NET 2.0 can be used in any type of application to manage the security settings of the PDF documents. You can encrypt the PDF content, add user and owner passwords, control the PDF document permissions for printing, copying, assembling, filling forms, editing content, editing annotations, etc or you can specify the length of the encryption key to 40 or 128 bits, remove all the security settings by providing the user or owner password.

If you need a ready to use tool to manage you PDF documents security settings you can use our command line utility. It is a simple application of the PDF security library.

The integration is extremely easy and no additional installation  is necessary in order to get started. It's just a .NET 2.0 assembly that you have to reference in your application.   Samples are available in the downloaded archive.

Features

PDF Security for .NET Box
.NET 2.0 pdf security development libraries and samples
Win32 Pdf Security command line tool
Set user and owner passwords
Encrypt PDF document content
40 and 128 bit encryption keys
Set PDF document permissions (print, edit, copy)
Remove PDF document security settings based on user or owner password
Memory and file versions of the API methods
Asp.Net 2.0 Support
Royalty free development libraries and samples



Code Sample

1: PdfSecurityOptions securityOptions = new PdfSecurityOptions();
2:  
3: securityOptions.CanAssembleDocument = canAssembleDocument;
4: securityOptions.CanCopyContent = canCopyContent;
5: securityOptions.CanEditAnnotations = canEditAnnotations;
6: securityOptions.CanEditContent = canEditContent;
7: securityOptions.CanFillFormFields = canFillFormFields;
8: securityOptions.CanPrint = canPrint;
9: securityOptions.KeySize = keySize;
10: securityOptions.UserPassword = userPassword;
11: securityOptions.OwnerPassword = ownerPassword;
12:  
13: PdfSecurityManager securityManager = new PdfSecurityManager(securityOptions);
14:  
15: if (removeSecurity)
16:     securityManager.SaveUnSecuredPdfToFile(srcPdfFile, outFile, removeSecurityPswd);
17: else
18:     securityManager.SaveSecuredPdfToFile(srcPdfFile, outFile);