2024-09-25 19:45:28 -04:00
|
|
|
// Code generated from Pkl module `models`. DO NOT EDIT.
|
2024-09-19 02:04:22 -04:00
|
|
|
package orm
|
|
|
|
|
|
|
|
import (
|
2024-09-29 14:40:36 -04:00
|
|
|
"github.com/onsonr/sonr/pkg/orm/keyalgorithm"
|
|
|
|
"github.com/onsonr/sonr/pkg/orm/keycurve"
|
|
|
|
"github.com/onsonr/sonr/pkg/orm/keyencoding"
|
|
|
|
"github.com/onsonr/sonr/pkg/orm/keyrole"
|
|
|
|
"github.com/onsonr/sonr/pkg/orm/keytype"
|
2024-09-19 02:04:22 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type PublicKey struct {
|
|
|
|
Role keyrole.KeyRole `pkl:"role" json:"role,omitempty" query:"role"`
|
|
|
|
|
|
|
|
Algorithm keyalgorithm.KeyAlgorithm `pkl:"algorithm"`
|
|
|
|
|
|
|
|
Encoding keyencoding.KeyEncoding `pkl:"encoding"`
|
|
|
|
|
|
|
|
Curve keycurve.KeyCurve `pkl:"curve"`
|
|
|
|
|
|
|
|
KeyType keytype.KeyType `pkl:"key_type"`
|
|
|
|
|
|
|
|
Raw string `pkl:"raw"`
|
|
|
|
|
|
|
|
Jwk *JWK `pkl:"jwk"`
|
|
|
|
}
|