The public tree and its history contain only the listed paths. Earlier projection history remains preserved internally. Source-Sha: 913fde029b935671833254797f0f20f1eb9fabba Policy-Sha: 913fde029b935671833254797f0f20f1eb9fabba Tree-Digest: 180ae530c1058a2a5c89837bdce2d323ae83e669e38590ca72e75b8d92b7262f
15 lines
437 B
Go
15 lines
437 B
Go
package capability
|
|
|
|
import (
|
|
"crypto/ed25519"
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
)
|
|
|
|
// KeyIDFor returns the authority key fingerprint: hex(sha256(pubkey)[:16]).
|
|
// Matches SigningService.GetPublicKeyFingerprint and the executor's key_id_for.
|
|
// Split out of token.go so retiring Token does not strand the mutation protocol.
|
|
func KeyIDFor(pub ed25519.PublicKey) string {
|
|
hash := sha256.Sum256(pub)
|
|
return hex.EncodeToString(hash[:16])
|
|
}
|