Skip to content

Instantly share code, notes, and snippets.

@h3nryza
Created July 17, 2018 17:37
Show Gist options
  • Select an option

  • Save h3nryza/b59a232ef71148ff198b3cfe459cabaa to your computer and use it in GitHub Desktop.

Select an option

Save h3nryza/b59a232ef71148ff198b3cfe459cabaa to your computer and use it in GitHub Desktop.
Powershell Base64
$test = -join ((65..122) | Get-Random -Count 10000 | % {[char]$_})
[Convert]::ToBase64String([System.Text.Encoding]::Unicode.GetBytes("$test"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment