AES _Encryption in Mysql , Decryption in C#.Net
问题 Mysql : SELECT AES_ENCRYPT('Test','pass') AES_ENCRYPT() and AES_DECRYPT() enable encryption and decryption of data using the official AES (Advanced Encryption Standard) algorithm, previously known as “Rijndael.” Encoding with a 128-bit key length is used, but you can extend it up to 256 bits by modifying the source. We chose 128 bits because it is much faster and it is secure enough for most purposes. http://dev.mysql.com/doc/refman/5.5/en/encryption-functions.html#function_aes-encrypt I was