Click here to Skip to main content
Sign Up to vote bad
good
See more: C#.NETEncryption
hey
i have awebsite my friend develops it in php this site offer pdf books
user purchase book and download it   but encrypted
i want to develop a c# windows app to   decrypt this pdf and open in my app and   user can add notes on file but encryption and decryption pdf files i dono't know
anybody can help me
Posted 27 Feb '12 - 2:33

Comments
ryanb31 - 27 Feb '12 - 8:41
Refer to the PDF SDK.

3 solutions

Install Spire.PDF for .NET; then use the below sample C# code to encrypt any PDF files:
 
       static void EncryptPDF()
        {
	    //Create a pdf document.
	    PdfDocument doc = new PdfDocument();
	    // Create one page
	    PdfPageBase page = doc.Pages.Add();
	    //Draw the page
	    DrawPage(page);
 
	    //encrypt
	    doc.Security.KeySize = PdfEncryptionKeySize.Key128Bit;
	    doc.Security.OwnerPassword = "e-iceblue";
	    doc.Security.UserPassword = "test";
	    doc.Security.Permissions = PdfPermissionsFlags.Print | PdfPermissionsFlags.FillFields;
 
	    doc.SaveToFile("Encryption.pdf");
	    doc.Close();
 
	    //Launching the Pdf file.
	     System.Diagnostics.Process.Start("Encryption.pdf");
	 }
  Permalink  
<b>PDFs books   downloaded from PHP site
these books downloaded with encryption or password
i want to develop c# app to be the only program can open these books
and other PDF tools cannot do this
how?</b>
  Permalink  
我也在找解密 根本就没有 大多数都是收费的
I AM FIND
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 255
1 Mahesh Bailwal 230
2 Aarti Meswania 225
3 Ron Beyer 215
4 Rohan Leuva 198
0 Sergey Alexandrovich Kryukov 8,553
1 OriginalGriff 6,899
2 CPallini 3,648
3 Rohan Leuva 2,963
4 Maciej Los 2,308


Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 27 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid