当前位置:网站首页>Personal required code

Personal required code

2022-07-05 04:52:00 yaohuiyaoo

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace aggregate
{
class MD5Str
{
///
/// character string MD5 encryption
///
/// The string to encrypt
/// Ciphertext

    static void Main(string[] args)
    {
        string data = "123456789";  // Data to encrypt   
        string encodeStr = "";   // Encrypted text     

        encodeStr = MD5Str.MD5(data);

        Console.WriteLine(" The original :{0}", data);
        Console.WriteLine(" Encrypted text :{0}", encodeStr);
    }

}

}

原网站

版权声明
本文为[yaohuiyaoo]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202140626299437.html