GnuPG Cheat Sheet - 快速参考指南,收录常用语法、命令与实践。
Gpg4win and the GPG Suite have OS-specific features.
Sometimes GPG keys are referred as PGP keys. They're interchangeable, as they follow the OpenPGP Standard.
Generate your keys:
$ gpg --generate-key
... or fully configure your keys.
$ gpg --generate-full-keys
Note: Choose a strong passphrase! The encryption is only as strong as your passphrase.
List your keys:
$ gpg --list-keys
List your secret keys:
$ gpg --list-secret-keys
Export your public key:
$ gpg --export --armor <ID>
Export your secret key:
$ gpg --export-secret-key --armor <ID>
Delete your public key:
$ gpg --delete-key <ID>
Delete your secret key:
$ gpg --delete-secret-key <ID>
Encrypt with a passphrase:
$ gpg -c <FILE>
Encrypt as ASCII with -a flag:
$ gpg -ac <FILE>
Set output file path with -o flag:
$ gpg -c <FILE> -o <PATH>
Decrypt with a passphrase:
$ gpg <FILE>
Note: Choose a strong passphrase! The encryption is only as strong as your passphrase.
Encrypt using public-private key encryption:
$ gpg -e -r <RECIPIENT> <FILE>
Encrypt as ASCII output with -a flag:
$ gpg -ea -r <RECIPIENT> <FILE>
Encrypt and sign with -s flag:
$ gpg -se -r <RECIPIENT> <FILE>
Add multiple recipients:
$ gpg -e -r <RECIPIENT1> -r <RECIPIENT2> <FILE>
Set output file path with -o flag:
$ gpg -e -o <PATH> -r <RECIPIENT> <FILE>
Decrypt with your private key:
$ gpg <FILE>
Replace <RECIPIENT> with your intended recipient's imported public key ID.
Import using a file:
$ gpg --import <FILE>
Import using a link (macOS/Linux):
$ curl <WEBSITE> | gpg --import
Don't forget to sign the imported key:
$ gpg --sign-key <ID>
Enable GPG signing:
$ git config --global commit.gpgsign true
Set the signing key:
$ git config --global user.signingkey <ID>
Set location of GPG:
$ git config --global gpg.program <PROGRAM>
Note: Your name and email must match on Git and GnuPG.
Replace <PROGRAM> with one of the following:
| Platform | Value |
|---|---|
| Windows | C:\Program Files (x86)\GnuPG\bin\gpg.exe |
| macOS/Linux | /usr/local/bin/gpg |
{.left-text}
Export as ASCII:
$ gpg --export --armor <ID>
Note: Platforms, like GitHub, may ask you to verify the email you set in Git and GnuPG.
When you do a full restart, the GPG agent might not automatically start. Add the GnuPG's IPC tool to Startup Apps using PowerShell:
$ $shell = New-Object -ComObject WScript.Shell
$ $shortcut = $shell.CreateShortcut("C:\Users\$($Env:UserName)\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\gpg-connect-agent.lnk")
$ $shortcut.TargetPath = "C:\Program Files (x86)\GnuPG\bin\gpg-connect-agent.exe"
$ $shortcut.Arguments = "/bye"
$ $shortcut.Save()
Start up manually instead:
$ gpgconf --launch gpg-agent
Check if it was successfully added here.
地址
Level 10b, 144 Edward Street, Brisbane CBD(Headquarter)Level 2, 171 La Trobe St, Melbourne VIC 3000四川省成都市武侯区桂溪街道天府大道中段500号D5东方希望天祥广场B座45A13号Business Hub, 155 Waymouth St, Adelaide SA 5000Disclaimer
JR Academy acknowledges Traditional Owners of Country throughout Australia and recognises the continuing connection to lands, waters and communities. We pay our respect to Aboriginal and Torres Strait Islander cultures; and to Elders past and present. Aboriginal and Torres Strait Islander peoples should be aware that this website may contain images or names of people who have since passed away.
匠人学院网站上的所有内容,包括课程材料、徽标和匠人学院网站上提供的信息,均受澳大利亚政府知识产权法的保护。严禁未经授权使用、销售、分发、复制或修改。违规行为可能会导致法律诉讼。通过访问我们的网站,您同意尊重我们的知识产权。 JR Academy Pty Ltd 保留所有权利,包括专利、商标和版权。任何侵权行为都将受到法律追究。查看用户协议
© 2017-2025 JR Academy Pty Ltd. All rights reserved.
ABN 26621887572