Table of Contents [Hide/Show]
OSX shell Powershell Fiddler Text Editor
$ echo -n "username@logindomain:password" | base64 dXNlcm5hbWVAbG9naW5kb21haW46cGFzc3dvcmQ=
$intouchcredentials = [System.Text.Encoding]::UTF8.GetBytes("username@logindomain:password") [System.Convert]::ToBase64String($intouchcredentials) dXNlcm5hbWVAbG9naW5kb21haW46cGFzc3dvcmQ=