Security is an important part to cover when developing your application. You need to take care about data privacy, user authenticity, data travel security and that data is not be compromised.
The .NET Framework gives you a powerful way to secure your sensitive data. It gives several algorithms which you can use in development of your application. In this chapter, we will cover the following topics:
Cryptography and Cryptanalysis
Encryption and Decryption
Symmetric and Asymmetric Encryption
Digital Certificates
Key Management
Code Access Security
Hashing
Securing ...