Skip to content

It contains auxiliary scripts for encryption via gpg

Notifications You must be signed in to change notification settings

vugi915/gpg-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic commands

Key generation

gpg --full-gen-key

Key output

// Private key

gpg -K

// Public key

gpg -k

Import keys

gpg --import key_file.gpg

Export keys. Modificator <a> is the ascii format

gpg --export -a <mail> > <export_file>

Delete keys

gpg --delete-secret-keys <mail> gpg --delete-keys <mail>

File encryption

gpg -e -a -r mail <filename>

File decryption

gpg -d -o <decrypted_file> <new_file>

About

It contains auxiliary scripts for encryption via gpg

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages