Created
July 28, 2014 15:13
-
-
Save dalton-cole/4b9b77db108c554999eb to your computer and use it in GitHub Desktop.
PowerShell text to MD5 hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#converts string to MD5 hash in hyphenated and uppercase format | |
$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 '-', '' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks man!