asp.net 中的文本到 md5 转换器脚本

发布于 2024-10-30 22:26:57 字数 124 浏览 1 评论 0原文

我有一个asp.net 2.0网站,因为我需要使用CCNOW支付集成来进行付款,但为此我必须以MD5格式向CCNOW发送请求,但我无法生成CCNOW MD5的值格式。那么,请问有人有一个脚本/函数可以将给定的字符串转换为 MD5 吗?

I have a website in asp.net 2.0, As I need to use CCNOW payment integration to make a payment but for this I'll have to send request to CCNOW in MD5 format but I can't able to generate my values to CCNOW MD5 format. So, could you please any one have a script/function that will convert given string into MD5?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

老街孤人 2024-11-06 22:26:57

MD5 不是一种“格式”,而是一种哈希算法。使用MD5 类。假设您使用 C#,它看起来像 这个

static string getMd5Hash(string input)
{
    // Create a new instance of the MD5CryptoServiceProvider object.
    MD5 md5Hasher = MD5.Create();

    // Convert the input string to a byte array and compute the hash.
    byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input));

    // Create a new Stringbuilder to collect the bytes
    // and create a string.
    StringBuilder sBuilder = new StringBuilder();

    // Loop through each byte of the hashed data 
    // and format each one as a hexadecimal string.
    for (int i = 0; i < data.Length; i++)
    {
        sBuilder.Append(data[i].ToString("x2"));
    }

    // Return the hexadecimal string.
    return sBuilder.ToString();
}

MD5 isn't a "format," is a hashing algorithm. Use the MD5 class. Assuming you're using C#, it would look something like this:

static string getMd5Hash(string input)
{
    // Create a new instance of the MD5CryptoServiceProvider object.
    MD5 md5Hasher = MD5.Create();

    // Convert the input string to a byte array and compute the hash.
    byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input));

    // Create a new Stringbuilder to collect the bytes
    // and create a string.
    StringBuilder sBuilder = new StringBuilder();

    // Loop through each byte of the hashed data 
    // and format each one as a hexadecimal string.
    for (int i = 0; i < data.Length; i++)
    {
        sBuilder.Append(data[i].ToString("x2"));
    }

    // Return the hexadecimal string.
    return sBuilder.ToString();
}
饮湿 2024-11-06 22:26:57
public static string GetMD5(string value) {
    MD5 md5 = MD5.Create();
    byte[] md5Bytes = System.Text.Encoding.Default.GetBytes(value);
    byte[] cryString = md5.ComputeHash(md5Bytes);
    string md5Str = string.Empty;
    for (int i = 0; i < cryString.Length; i++) {
        md5Str += cryString[i].ToString("X");
    }
    return md5Str;
}

调用它:

GetMD5(stringToConvert);
public static string GetMD5(string value) {
    MD5 md5 = MD5.Create();
    byte[] md5Bytes = System.Text.Encoding.Default.GetBytes(value);
    byte[] cryString = md5.ComputeHash(md5Bytes);
    string md5Str = string.Empty;
    for (int i = 0; i < cryString.Length; i++) {
        md5Str += cryString[i].ToString("X");
    }
    return md5Str;
}

Call it with:

GetMD5(stringToConvert);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文