Documentation
¶
Index ¶
- Variables
- func ExportGpgKey(ctx context.Context, gpgKeyID string, gpgKeyExportPath string) error
- func GetGpgKey(gpgKeyReader io.Reader, passphrase string) (*openpgp.Entity, error)
- func GetGpgKeyReader(ctx context.Context, gpgKeyID string, gpgKeyPath string, appName string) (io.Reader, error)
- func ReadSSHSigningKey(signingKey string) (string, error)
- func SignSSHCommit(ctx context.Context, commitContent []byte, signingKeyPath string) (string, error)
Constants ¶
This section is empty.
Variables ¶
var ( ErrCannotFindPrivKey = errors.New("cannot find private key") ErrCannotFindPrivKeyMatchingFingerprint = errors.New( "cannot find private key matching fingerprint", ) )
Functions ¶
func ExportGpgKey ¶
ExportGpgKey exports a GPG key from the keyring to a file.
func GetGpgKey ¶
GetGpgKey returns a GPG key entity from the given reader, decrypting it with the provided passphrase. If passphrase is empty, it prompts interactively (falling back to empty passphrase in non-TTY environments). Exported for use by autobump (github.com/rios0rios0/autobump).
func GetGpgKeyReader ¶
func GetGpgKeyReader(ctx context.Context, gpgKeyID string, gpgKeyPath string, appName string) (io.Reader, error)
GetGpgKeyReader returns a reader for the GPG key. The appName parameter is used for default key path generation (e.g. "autobump" -> ~/.gnupg/autobump-{keyID}.asc). Supports armored (ASCII) and base64-encoded armored key formats. Exported for use by autobump (github.com/rios0rios0/autobump).
func ReadSSHSigningKey ¶
ReadSSHSigningKey resolves the SSH signing key path from the git config value. It expands ~ to the home directory and verifies the file exists. Exported for use by autobump (github.com/rios0rios0/autobump).
Types ¶
This section is empty.