genzouw / gpg

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gpg

Docker Cloud build status Docker Pulls Docker Cloud Automated build

dockeri.co

Description

Docker image that give gpg command.

Please contact me anytime if you have a problem or request! My information is posted at the bottom of this document.

Requirements

Installation

You do not need to install !

Usage

# It is convenient to create an alias
alias gpg='docker run -it --rm -v "$PWD:/workdir" -e GNUPGHOME=/workdir/.gnupg genzouw/gpg'

# Generate public and private keys
gpg --gen-key

# Public key output
gpg --armor --output my.key.pub --export genzouw

# Public key acquisition (for customers)
gpg --import my.key.pub

# Encryption (for customers)
echo 'My name is Genzo' > text.txt
gpg --encrypt --recipient 'genzouw' text.txt

# Decryption
gpg -o text.txt --decrypt text.txt.gpg

Relase Note

date version note
2020-05-14 0.1 first release.

License

This software is released under the MIT License, see LICENSE.

Help

Got a question ?

File a Github issue, send an email to genzouw@gmail.com or tweet to @genzouw on Twitter.

Author Information

genzouw

About


Languages

Language:Dockerfile 100.0%