c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package asymkey
|
|
|
|
import (
|
|
"os"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/git"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/log"
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/setting"
|
|
)
|
|
|
|
func GetDisplaySigningKey(key *git.SigningKey) string {
|
|
if key == nil || key.Format == "" {
|
|
return ""
|
|
}
|
|
|
|
switch key.Format {
|
|
case git.SigningKeyFormatOpenPGP:
|
|
return key.KeyID
|
|
case git.SigningKeyFormatSSH:
|
|
content, err := os.ReadFile(key.KeyID)
|
|
if err != nil {
|
|
log.Error("Unable to read SSH key %s: %v", key.KeyID, err)
|
|
return "(Unable to read SSH key)"
|
|
}
|
|
display, err := CalcFingerprint(string(content))
|
|
if err != nil {
|
|
log.Error("Unable to calculate fingerprint for SSH key %s: %v", key.KeyID, err)
|
|
return "(Unable to calculate fingerprint for SSH key)"
|
|
}
|
|
return display
|
|
}
|
|
setting.PanicInDevOrTesting("Unknown signing key format: %s", key.Format)
|
|
return "(Unknown key format)"
|
|
}
|