Probably one of the easiest things you'll ever do with gpg
Install Keybase: https://keybase.io/download and Ensure the keybase cli is in your PATH
First get the public key
keybase pgp export | gpg --import
Next get the private key
Probably one of the easiest things you'll ever do with gpg
Install Keybase: https://keybase.io/download and Ensure the keybase cli is in your PATH
First get the public key
keybase pgp export | gpg --import
Next get the private key
| import signal | |
| class GracefulInterruptHandler(object): | |
| def __init__(self, sig=signal.SIGINT): | |
| self.sig = sig | |
| def __enter__(self): | |
| self.interrupted = False |