publicKey.go 242 B

12345678910
  1. package crypto
  2. import "net/url"
  3. // PublicKey represents a public key with associated ownership.
  4. type PublicKey struct {
  5. ID *url.URL `json:"id"`
  6. Owner *url.URL `json:"owner"`
  7. PublicKeyPem string `json:"publicKeyPem"`
  8. }