asp.net 中的文本到 md5 转换器脚本
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MD5 不是一种“格式”,而是一种哈希算法。使用
MD5
类。假设您使用 C#,它看起来像 这个:MD5 isn't a "format," is a hashing algorithm. Use the
MD5
class. Assuming you're using C#, it would look something like this:调用它:
Call it with: