Skip to content
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

[WIP] Update the Registration to include CSRs #60

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions proto/trisa/gds/api/v1beta1/api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,13 @@ message RegisterRequest {

// TRIXO Questionnaire
trisa.gds.models.v1beta1.TRIXOQuestionnaire trixo = 9;

// Certificate Signing Requests
// An optional request parameter that will allow you submit a valid CSR to ensure
// that no private key material is transmitted over the Internet. If this field is
// left empty, then a complete certificate including the private keys will be
// generated during the registration process.
string csr = 10;
}

message RegisterReply {
Expand Down