17 lines
363 B
Protocol Buffer
17 lines
363 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
service Publisher {
|
|
rpc SubmitToSingleCTWithResult(Request) returns (Result) {}
|
|
}
|
|
|
|
message Request {
|
|
optional bytes der = 1;
|
|
optional string LogURL = 2;
|
|
optional string LogPublicKey = 3;
|
|
optional bool precert = 4;
|
|
optional bool storeSCT = 5;
|
|
}
|
|
|
|
message Result {
|
|
optional bytes sct = 1;
|
|
} |