Click here to Skip to main content
15,884,353 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
can u send me the code to encrypt a pdf file using rijendael algorithm
Posted
Updated 7-Jan-14 20:24pm
v2

1 solution

CodeProject Articles and Tips
Google Resources

or you can request someone to write the full code and send it to you at
http://www.freelancer.com/[^]

or you maybe interested in this article:
http://mattgemmell.com/what-have-you-tried/[^]
 
Share this answer
 
v3
Comments
Member 10500918 8-Jan-14 3:10am    
what is the difference in the code to encrypt a file and a code to text using rijendael algorithm
adriancs 8-Jan-14 3:19am    
Rinjdael Algorithm in C# is actually encrypting byte arrays and return encrypted byte arrays too.

Basically,

To encrypt text, the text is converted into byte arrays and pass to rinjdael to encrypt, then convert the encrypted byte arrays into base64 string (text).

To encrypt file, the file is loaded into byte arrays and encrypted by rinjdael, then the encrypted byte arrays is written into file.

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900