码迷,mamicode.com
首页 > 其他好文 > 详细

AES加密

时间:2018-11-13 14:21:03      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:rem   lap   length   utf8   creat   图片   技术分享   nal   mod   

 

技术分享图片
        public static string AesEncrypt(string str, string key)
        {
            if (string.IsNullOrEmpty(str)) return null;
            Byte[] toEncryptArray = Encoding.UTF8.GetBytes(str);

            RijndaelManaged rm = new RijndaelManaged
            {
                Key = Encoding.UTF8.GetBytes(key),
                Mode = CipherMode.ECB,
                Padding = PaddingMode.PKCS7
            };

            ICryptoTransform cTransform = rm.CreateEncryptor();
            Byte[] resultArray = cTransform.TransformFinalBlock(toEncryptArray, 0, toEncryptArray.Length);

            return Convert.ToBase64String(resultArray, 0, resultArray.Length);
        }
View Code

 

AES加密

标签:rem   lap   length   utf8   creat   图片   技术分享   nal   mod   

原文地址:https://www.cnblogs.com/wyp1988/p/9951632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!