Gabe Kangas b80ccc4966
WIP
2024-03-25 09:04:05 -07:00

11 lines
242 B
Go

package crypto
import "net/url"
// PublicKey represents a public key with associated ownership.
type PublicKey struct {
ID *url.URL `json:"id"`
Owner *url.URL `json:"owner"`
PublicKeyPem string `json:"publicKeyPem"`
}