0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GPG利用

Posted at

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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?