aboutsummaryrefslogblamecommitdiffstats
path: root/identity/key.go
blob: 90edfb607eaefbe92989023f964eebad0ee16e8f (plain) (tree)
1
2
3
4
5
6
7






                                               





                                
package identity

type Key struct {
	// The GPG fingerprint of the key
	Fingerprint string `json:"fingerprint"`
	PubKey      string `json:"pub_key"`
}

func (k *Key) Validate() error {
	// Todo

	return nil
}