Standard library for AES encryption for VB.NET?
问题 Is there a standard library to use for AES encryption for VB.NET? I want to encrypt a string with a static private key. I googled and found a lot of variations. I don't really know how to determine which algorithms are secure or not. 回答1: The System.Security.Cryptography namespace contains all the classes you need to perform most standard encryption tasks. Unfortunately, since encryption is a rather complicated topic, the classes are somewhat difficult to work with--especially for beginners.