-
Notifications
You must be signed in to change notification settings - Fork 36
Add types and RPCs for WIT-SVID #80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: next
Are you sure you want to change the base?
Conversation
4cd6952 to
b58591a
Compare
b58591a to
1db03ba
Compare
| // Required. SPIFFE ID of the JWT-SVID. | ||
| spire.api.types.SPIFFEID id = 1; | ||
|
|
||
| // Required. Public key for the cnf claim. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should specify the encoding. I propose either JWK incl. private key or ASN1 DER.
| // Required. The entry ID for the identity being requested. | ||
| string entry_id = 1; | ||
|
|
||
| // Required. The ASN.1 DER encoded Certificate Signing Request (CSR). The |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think a CSR should be required for requesting a WIT. Similar to comment above I propose to just require the key itself (JWK or ASN DER)
This contains the types and RPCs for some basic functionality for WIT-SVIDs to work. Extra functionality is required for UpstreamAuthority spire to function and for tainting and revoking keys. Signed-off-by: Sorin Dumitru <sorin@returnze.ro>
1d963a2 to
192769c
Compare
Signed-off-by: Sorin Dumitru <sorin@returnze.ro>
192769c to
64018b1
Compare
This contains the types and RPCs for some basic functionality for WIT-SVIDs to work. Extra functionality is required for UpstreamAuthority spire to function and for tainting and revoking keys.