...

Text file src/github.com/letsencrypt/boulder/publisher/proto/publisher.proto

Documentation: github.com/letsencrypt/boulder/publisher/proto

     1syntax = "proto3";
     2option go_package = "github.com/letsencrypt/boulder/publisher/proto";
     3
     4service Publisher {
     5  rpc SubmitToSingleCTWithResult(Request) returns (Result) {}
     6}
     7
     8message Request {
     9  bytes der = 1;
    10  string LogURL = 2;
    11  string LogPublicKey = 3;
    12  bool precert = 4;
    13}
    14
    15message Result {
    16  bytes sct = 1;
    17}

View as plain text