Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== GPG ====== * Key pair creation <code> $ gpg --full-gen-key </code> * List keys <code> $ gpg --list-keys </code> * List own keys <code> $ gpg --list-secret-keys $ gpg -K </code> * Import/export key into binary : <code> # Import $ gpg --import <file> # Export $ gpg --export <id> --output <file> </code> * Import/export key into ASCII : <code> # Import $ gpg -a --import <fichier> # Export $ gpg -a --export <identifiant> --output <fichier> </code> * Cipher file <code> $ gpg [--ouput <output>] --encrypt -r <id> <input file> </code> * Uncipher <code> $ gpg --decrypt -r <id> <file> </code> * Sign file <code> $ gpg --sign <file> </code> cheatsheet/gpg.txt Last modified: 2024/10/14 20:59by 127.0.0.1