标题: [其他] 求计算字符串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- function Get-Hash{
- param(
- [string] $string = $(throw 'string is required'), [ValidateSet("MD5", "SHA256")]
- [string] $algorithm
- )
-
- $utf8 = new-object -TypeName System.Text.UTF8Encoding
- $hasher = [System.Security.Cryptography.HashAlgorithm]::create($algorithm)
- $hash = $hasher.ComputeHash($utf8.GetBytes($string))
- -join ( $hash | foreach {"{0:X2}" -f $_} )
- }
-
- Get-Hash 'bathome' -algorithm MD5
复制代码
D:\>powershell -f test.ps1
8D0F192E9256D464887AD5479E19A889
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |