param (
[string]$NewVar
)
function Get-MD5Hash($input) {
$md5 = [System.Security.Cryptography.MD5]::Create()
$bytes = [System.Text.Encoding]::UTF8.GetBytes($input)
$hash = $md5.ComputeHash($bytes)
$hashString = [BitConverter]::ToString($hash) -replace '-', ''
return $hashString
}
$md5Hash = Get-MD5Hash -input $NewVar
Write-Output $md5Hash
eetuRobo
124
Super User 2025 Season 1
CU12050101-0
28
Riyaz_riz11
20
Super User 2025 Season 1