System.Security.Cryptography vs PCLCrypto
问题 We are in the process of gutting a lot of shared functionality in our system and porting it to PCL libraries. I am having an issue using PCLCrypto. I am taking some existing data in our database, and trying to decrypt it with the same algorithm. I get the value back, but there are 16 extra bytes at the end that are just garbage. See Code below: Old Algorithm using System.Security.Cryptography public static string SymmetricEncrypt(this string plaintext, string key, SymmetricAlgorithm algorithm