import "github.com/hashicorp/vault/helper/pgpkeys"
encrypt_decrypt.go flag.go keybase.go test_keys.go
const ( TestPrivKey1 = "" /* 3726 byte string literal not displayed */ TestPrivKey2 = "" /* 3726 byte string literal not displayed */ TestPrivKey3 = "" /* 3726 byte string literal not displayed */ TestPubKey1 = "" /* 1967 byte string literal not displayed */ TestPubKey2 = "" /* 1967 byte string literal not displayed */ TestPubKey3 = "" /* 1967 byte string literal not displayed */ TestAAPubKey1 = "" /* 2069 byte string literal not displayed */ )
DecryptBytes takes in base64-encoded encrypted bytes and the base64-encoded private key and decrypts it. A bytes.Buffer is returned to allow the caller to do useful thing with it (get it as a []byte, get it as a string, use it as an io.Reader, etc), and also because this function doesn't know if what comes out is binary data or a string, so let the caller decide.
EncryptShares takes an ordered set of byte slices to encrypt and the corresponding base64-encoded public keys to encrypt them with, encrypts each byte slice with the corresponding public key.
Note: There is no corresponding test function; this functionality is thoroughly tested in the init and rekey command unit tests
FetchKeybasePubkeys fetches public keys from Keybase given a set of usernames, which are derived from correctly formatted input entries. It doesn't use their client code due to both the API and the fact that it is considered alpha and probably best not to rely on it. The keys are returned as base64-encoded strings.
GetEntities takes in a string array of base64-encoded PGP keys and returns the openpgp Entities
GetFingerprints takes in a list of openpgp Entities and returns the fingerprints. If entities is nil, it will instead parse both entities and fingerprints from the pgpKeys string slice.
ParsePGPKeys takes a list of PGP keys and parses them either using keybase or reading them from disk and returns the "expanded" list of pgp keys in the same order.
ReadPGPFile reads the given PGP file from disk.
PubKeyFileFlag implements flag.Value and command.Example to receive exactly one PGP or keybase key via a flag.
func (p *PubKeyFileFlag) Example() string
func (p *PubKeyFileFlag) Set(val string) error
func (p *PubKeyFileFlag) String() string
PGPPubKeyFiles implements the flag.Value interface and allows parsing and reading a list of PGP public key files.
func (p *PubKeyFilesFlag) Example() string
func (p *PubKeyFilesFlag) Set(val string) error
func (p *PubKeyFilesFlag) String() string
Package pgpkeys imports 11 packages (graph) and is imported by 91 packages. Updated 2019-10-09. Refresh now. Tools for package owners.