aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/key.go
blob: 2513c048b7cbd84d4a84c0129981f5b9b4fe77fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2025 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package git

// Based on https://git-scm.com/docs/git-config#Documentation/git-config.txt-gpgformat
const (
	SigningKeyFormatOpenPGP = "openpgp" // for GPG keys, the expected default of git cli
	SigningKeyFormatSSH     = "ssh"
)

type SigningKey struct {
	KeyID  string
	Format string
}