Skip to content

Instantly share code, notes, and snippets.

View lsmith090's full-sized avatar

Logan Smith lsmith090

View GitHub Profile
@lsmith090
lsmith090 / base64
Created July 21, 2024 02:48 — forked from iAnatoly/base64
One-liners encoding and decoding Base64 in powershell
[System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("SecretMessage"))
[System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String("U2VjcmV0TWVzc2FnZQ=="))