2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-20 18:29:05 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "pb";
|
|
|
|
|
|
|
|
package node;
|
|
|
|
|
|
|
|
import "gogo.proto";
|
|
|
|
|
|
|
|
service Certificates {
|
|
|
|
rpc Sign(SigningRequest) returns (SigningResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
message SigningRequest {
|
2018-12-31 15:45:43 +00:00
|
|
|
string auth_token = 1;
|
2018-12-20 18:29:05 +00:00
|
|
|
int64 timestamp = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SigningResponse {
|
2019-01-02 17:39:17 +00:00
|
|
|
repeated bytes chain = 1;
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|