1// Copyright (C) 2019 Storj Labs, Inc.
2// See LICENSE for copying information.
3
4syntax = "proto3";
5option go_package = "storj.io/common/pb";
6
7package node;
8
9service Certificates {
10    rpc Sign(SigningRequest) returns (SigningResponse);
11}
12
13message SigningRequest {
14    string auth_token = 1;
15    int64 timestamp = 2;
16}
17
18message SigningResponse {
19    repeated bytes chain = 1;
20}
21