Click here to Skip to main content
15,894,896 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I write a cryptographic system?
(I'm a beginner in C#).

Thanks.
Posted
Updated 16-May-10 10:35am
v2

Please dont use all caps...

Look here:Public Key RSA Encryption in C# .NET[^]
This article will help you start. It also has few links to other references. Goggle if you need more!
 
Share this answer
 
v2
There is some support for Cryptography in .NET but it is not as complete as in the Java libraries. I had to write a C# wrapper for a X509 Cert back in 2008 while moving a program from Java to C#. I wrappered the old Microsoft crypto32.dll to provide write capabilities. The read capabilities for Certs are already in the .NET libraries. If you are just looking for public and private key encryption and message digests, I think that they are already in the .NET libraries.

So, there is little need to write one of your own. Look on the internet for similar solutions and existing projects.
 
Share this answer
 

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



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