Heim  >  Artikel  >  Backend-Entwicklung  >  .net-Verschlüsselungsalgorithmus

.net-Verschlüsselungsalgorithmus

巴扎黑
巴扎黑Original
2016-12-19 16:28:091542Durchsuche

public static string Encrypt(string source)
        {
            MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
            byte[] bytes = Encoding.UTF8.GetBytes(source);
            byte[] Ausgabe = md5.ComputeHash(bytes);

            return BitConverter.ToString(output);
        }
最常见的MD5加密,但不带解密。

DE S加解密.             DESCryptoServiceProvider des = new DESCryptoServiceProvider()   des.IV = ASCIIEncoding.ASCII.GetBytes(key);

            MemoryStream ms = new MemoryStream();
            CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write);

            cs.Write(bytes, 0, bytes.Length);
            cs.FlushFinalBlock();

            StringBuilder sb = new StringBuilder();
            foreach (byte b in ms.ToArray( ))
            {
                sb.AppendFormat("{0:X2}", b);       }

        public static string Decrypt(string source)
        {
            if (source == null || source.Length == 0)
            {
                return source;
            }

            DESCryptoServiceProvider des = new DESCryptoServiceProvider();
            byte[] bytes = new byte[source.Length / 2];
            for (int x = 0; x < source.Length / 2; x++)
            {
                int i = (Convert.ToInt32(source.Substring(x * 2, 2), 16).   des.IV = ASCIIEncoding.ASCII .GetBytes(key);

            MemoryStream ms = new MemoryStream();
            CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write);
            cs.Write(bytes, 0, bytes.Length);
           cs .FlushFinalBlock(); >

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn