WindowsまたはMacで文字列のエンコードとデコード

Windows

certutilというデフォルトで入っているコマンドをコマンドプロンプトで使用する。

中身の確認

>type from.txt
hello world

エンコード

>certutil -f INPUT.txt encode.txt

デコード

>certutil -f encode.ext decode.txt

中身の確認

>type decode.txt
hello world

Mac

Macの場合はbaes64コマンドを使う。

エンコード

$ echo "hello world" | base64
aGVsbG8gd29ybGQK

デコード

$ echo aGVsbG8gd29ybGQK | base64 -d
hello world