mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
11 lines
242 B
Go
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"`
|
|
}
|