PowerShellでsha256ハッシュ文字列取得した。
powershellでsha256ハッシュの取得くん
なんで必要になったかは忘れた
code:powershell
string
::concat((
security.cryptography.SHA256
::create().computehash(
text.encoding
::utf8.getbytes("hogehogefugafuga"))|%{$_.tostring("x2").toupper()}))
#code
#powershell
#howto