74b243d1ca
Change-Id: I4689318304b54121a65e28860430d39d94ac5bd6
21 lines
399 B
Protocol Buffer
21 lines
399 B
Protocol Buffer
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
syntax = "proto3";
|
|
option go_package = "storj.io/storj/certificate/certificatepb";
|
|
|
|
package node;
|
|
|
|
service Certificates {
|
|
rpc Sign(SigningRequest) returns (SigningResponse);
|
|
}
|
|
|
|
message SigningRequest {
|
|
string auth_token = 1;
|
|
int32 timestamp = 2;
|
|
}
|
|
|
|
message SigningResponse {
|
|
repeated bytes chain = 1;
|
|
}
|