mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 06:12:23 +03: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"`
|
||
|
}
|