Encryption in C# Continue From our previous article Encryption in C# , e ncryption is the process of translating plain text data (plaintext) into something that appears to be random and meaningless (ciphertext). It is used to transform a data into some un-readable form so that authenticated person only can read/access the data. It requires some secret information to transform the plain text to cipher text; it is usually referred as key. Decryption is the process of converting ciphertext back to plaintext. To encrypt more than a small amount of data, symmetric encryption is used. There are many modern cryptographic methods used for encryption and decryption and it is classified in to two classes of key based algorithms. 1. Symmetric Algorithm o Same key is used for both Encryption and Decryption. The key will be kept as secret. o Symmetric Ciphers is divided into S...
Csharp Naija is a blog that teaches C# programming using a practical guide. C# Nigeria is here to guide interested individual to the world of software Engineering.