gpg

package module
v0.0.0-...-b2a87f5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 5, 2020 License: BSD-3-Clause Imports: 5 Imported by: 0

README

gpg-agent Go Report Card GoDoc

This is an experimental repository of a client to the GPG agent. It was built out of a desire to have a somewhat friendly interface to GPG keys stored on a smart card by way of GPG.

At this point, the interface might be subject to change.

This fork adds support for the currently connected card.

Things to know

There are a couple things off about this Go package, namely:

  • You can use PKCS1v15 and PSS for signing when your private keys are stored on disk, but when it's stored on a smart card you can only use PKCS1v15. The reason for this is that we can leverage the PKDECRYPT functionality for both decryption and signing when the keys are stored on disk, but most smart cards won't allow a decrypt operation on a signing key. Therefore, this package needs to leverage the PKSIGN gpg-agent command, which only returns a signature in the PKCS1v15 format.
  • There is no way to know what type of key the GPG agent returns (signing, encryption or authentication), so in the case of subkeys the user has to make this distinction manually.
  • It borrows code from crypto/rsa, because the interface of the rsa package expects a private key to be provided, which is not possible when the private key is stored on a smart card. Therefore, the relevant code from crypto/rsa was copied to an internal package in this repository where the PrivateKey{} was changed to add a DecryptFunc field that gets called instead of the unexported decrypt() function in the rsa package itself.

TODO

  • There are possibly some unnecessary type conversions happening because bufio.ReadString() is used as opposed to bufio.ReadBytes().
  • Move travis.yml to GitHub Action

License

This software is distributed under the BSD-style license found in the LICENSE file.

References

https://g10code.com/docs/scdaemon-ffg2007.pdf

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Keygrip

func Keygrip(publicKey crypto.PublicKey) string

Keygrip returns the keygrip of an RSA public key, or an empty string when the public key is of a different type.

Types

This section is empty.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL