sig-auth/keydirectory/keyentry.go

10 lines
128 B
Go
Raw Normal View History

2025-02-17 19:55:53 -05:00
package keydirectory
import "crypto"
type KeyEntry struct {
Alg string
PublicKey crypto.PublicKey
UserId string
}