What are Encryption techniques available with .NET (using C#). I have a numeric value with me which I want to encrypt to a string representation. Which one has decrypting support ?
|
1
|
|
|
|
|
|
Encryption (which is provided by the .NET framework / BCL, not C# the language) typically works on bytes. But that is fine; numbers are easy to represent as bytes, and the output bytes can be written as a string via So "all of them, indirectly"... See (re decrypting: an encryption can be decrypted; a hash cannot (hopefully); so as long as you don't look at hashing functions, you should be fine) |
||||||||
|
|
|
Whatever you do, don't roll your own encryption algorithm. The System.Security.Cryptography namespace will contain everything you need:
|
|||
|
|
|
|
I would start by looking at the Cryptography namespace. You can implement your own decrypt/encrypt string functions. Here is a good example. |
||
|
|
|
|
System.Security.Cryptography -
Example Walkthrough demonstrates how to encrypt and decrypt content. |
||
|
|
