Base64 encoden / decoden
Om base64 te kunnen encoden / decoden ivm troubleshooten van web applicaties, kun je de volgende powershell commando's gebruiken:
Encoden van $x :
[System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($x))
Decoden van $x :
[System.Text.Encoding]::ASCII.GetString([System.Convert]::FromBase64String($x))
Enjoy :)
Comments
Anonymous
January 01, 2003
Organizational Forms Library Exchange 2007 In Exchange 2000|3 kon je nog heel gemakkelijk een OrganisationalAnonymous
June 18, 2013
thanks for sharing. If you need a online base64 decode tool you can check this one: http://base64decode.net/