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 ?
What are Encryption techniques available with .NET (using C#). I have a numeric value
Share
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
Convert.ToBase64String.So “all of them, indirectly”…
See
System.Security.Cryptographyon MSDN(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)