管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2024-09-05 95d9356edef73a1ad5b04e62b7aef6b77697a226
DataLoader/CS/MD5Helper.cs
@@ -3,8 +3,6 @@
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace DataLoader.CS
{
@@ -15,7 +13,7 @@
        /// </summary>
        /// <param name="pathName">文件绝对路径</param>
        /// <returns>MD5校验码</returns>
        public static string getMD5Hash(string pathName)
        public static string GetMD5Hash(string pathName)
        {
            try
            {
@@ -40,7 +38,7 @@
        /// </summary>
        /// <param name="buffer">待字节数组</param>
        /// <returns>MD5校验码</returns>
        public static string getMD5Hash(byte[] buffer)
        public static string GetMD5Hash(byte[] buffer)
        {
            MD5CryptoServiceProvider oMD5Hasher = new MD5CryptoServiceProvider();
            try