Board logo

标题: [其他] 求计算字符串MD5的第三方或者脚本,不是计算文件的,是计算字符的 [打印本页]

作者: becase    时间: 2020-7-10 21:32     标题: 求计算字符串MD5的第三方或者脚本,不是计算文件的,是计算字符的

因为在做一个工具的时候有用到MD5,但是百度了下都只能计算文件的,所以特来求助
作者: Batcher    时间: 2020-7-10 22:15

回复 1# becase


这几个工具都试过了吗
http://bcn.bathome.net/s/tool/index.html?key=md5
作者: Batcher    时间: 2020-7-10 22:36

回复 1# becase


test.ps1
  1. function Get-Hash{
  2. param(
  3.     [string] $string = $(throw 'string is required'), [ValidateSet("MD5", "SHA256")]
  4.     [string] $algorithm
  5. )
  6. $utf8 = new-object -TypeName System.Text.UTF8Encoding
  7. $hasher = [System.Security.Cryptography.HashAlgorithm]::create($algorithm)
  8. $hash = $hasher.ComputeHash($utf8.GetBytes($string))
  9. -join ( $hash | foreach {"{0:X2}" -f $_} )
  10. }
  11. Get-Hash 'bathome' -algorithm MD5
复制代码
D:\>powershell -f test.ps1
8D0F192E9256D464887AD5479E19A889




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2