Skip to content

Commit d8cb744

Browse files
committed
refine proto
1 parent 6e13e75 commit d8cb744

3 files changed

Lines changed: 58 additions & 51 deletions

File tree

mtca/proto/mtca.pb.go

Lines changed: 50 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mtca/proto/mtca.proto

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,21 @@ syntax = "proto3";
33
package mtca;
44
option go_package = "github.com/letsencrypt/boulder/mtca/proto";
55

6+
import "core/proto/core.proto";
7+
68
// MTCA issues MTC certificates.
79
service MTCA {
8-
// Submit requests that the CA start the process of creating a standalone certificate
10+
// Issue requests that the CA start the process of creating a standalone certificate
911
// for the given request. It returns once a checkpoint has been signed that includes
1012
// that certificate's TBSCertificateLogEntry, but does not wait for cosignatures.
1113
rpc Issue(IssueRequest) returns (IssueResponse) {}
1214
}
1315

1416
message IssueRequest {
1517
// Next unused field number: 4
16-
bytes csr = 1;
17-
int64 registrationID = 2;
18-
int64 orderID = 3;
18+
bytes pubkey = 1;
19+
repeated core.Identifier identifiers = 2;
20+
string profile = 3;
1921
}
2022

2123
message IssueResponse {

mtca/proto/mtca_grpc.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)