gpg利用のメモ
環境
% sw_vers
ProductName: macOS
ProductVersion: 14.5
BuildVersion: 23F79
インストール
% brew install gpg
鍵作成
% gpg --gen-key
% gpg --list-keys
% echo "Hello world" | gpg -r [uid] --encrypt | base64 -b 0 > message.txt
復号 ※パスフレーズ入力した場合
% cat message.txt | base64 -d | gpg --pinentry-mode=loopback --passphrase 'password' --decrypt\n