More files, other stuff.

This commit is contained in:
John Doty 2013-05-18 22:59:28 -07:00
parent 4fcb8721da
commit a6a986cb76
37 changed files with 2826 additions and 8 deletions

View file

@ -184,3 +184,7 @@ function ConvertFrom-EKB($text)
return $ekb
}
function ConvertFrom-Base64UTF8($base64) {
return [System.Text.Encoding]::UTF8.GetString([Convert]::FromBase64String($base64))
}