|
- #将字符串MD5为大写格式
- $someString = "test"
- $md5 = new-object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider
- $utf8 = new-object -TypeName System.Text.UTF8Encoding
- $hash = [System.BitConverter]::ToString($md5.ComputeHash($utf8.GetBytes($someString)))
- #to remove hyphens and downcase letters add:
- $hash = $hash.ToLower() -replace '-', ''
复制代码 |
|