2018-12-20 18:29:05 +00:00
|
|
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
|
|
|
// source: certificate.proto
|
|
|
|
|
|
|
|
package pb
|
|
|
|
|
|
|
|
import proto "github.com/gogo/protobuf/proto"
|
|
|
|
import fmt "fmt"
|
|
|
|
import math "math"
|
|
|
|
import _ "github.com/gogo/protobuf/gogoproto"
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "golang.org/x/net/context"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
|
|
|
type SigningRequest struct {
|
2018-12-31 15:45:43 +00:00
|
|
|
AuthToken string `protobuf:"bytes,1,opt,name=auth_token,json=authToken,proto3" json:"auth_token,omitempty"`
|
|
|
|
Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
2018-12-20 18:29:05 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SigningRequest) Reset() { *m = SigningRequest{} }
|
|
|
|
func (m *SigningRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SigningRequest) ProtoMessage() {}
|
|
|
|
func (*SigningRequest) Descriptor() ([]byte, []int) {
|
2019-01-25 16:23:25 +00:00
|
|
|
return fileDescriptor_certificate_2545cbff56dfc715, []int{0}
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
|
|
|
func (m *SigningRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SigningRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *SigningRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_SigningRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *SigningRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_SigningRequest.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *SigningRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_SigningRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *SigningRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_SigningRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_SigningRequest proto.InternalMessageInfo
|
|
|
|
|
2018-12-31 15:45:43 +00:00
|
|
|
func (m *SigningRequest) GetAuthToken() string {
|
2018-12-20 18:29:05 +00:00
|
|
|
if m != nil {
|
2018-12-31 15:45:43 +00:00
|
|
|
return m.AuthToken
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
2018-12-31 15:45:43 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SigningRequest) GetTimestamp() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Timestamp
|
|
|
|
}
|
|
|
|
return 0
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type SigningResponse struct {
|
2019-01-28 22:53:37 +00:00
|
|
|
Chain [][]byte `protobuf:"bytes,1,rep,name=chain,proto3" json:"chain,omitempty"`
|
2018-12-20 18:29:05 +00:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SigningResponse) Reset() { *m = SigningResponse{} }
|
|
|
|
func (m *SigningResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SigningResponse) ProtoMessage() {}
|
|
|
|
func (*SigningResponse) Descriptor() ([]byte, []int) {
|
2019-01-25 16:23:25 +00:00
|
|
|
return fileDescriptor_certificate_2545cbff56dfc715, []int{1}
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
|
|
|
func (m *SigningResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SigningResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *SigningResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_SigningResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (dst *SigningResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_SigningResponse.Merge(dst, src)
|
|
|
|
}
|
|
|
|
func (m *SigningResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_SigningResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *SigningResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_SigningResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_SigningResponse proto.InternalMessageInfo
|
|
|
|
|
2019-01-02 17:39:17 +00:00
|
|
|
func (m *SigningResponse) GetChain() [][]byte {
|
2018-12-20 18:29:05 +00:00
|
|
|
if m != nil {
|
2019-01-02 17:39:17 +00:00
|
|
|
return m.Chain
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*SigningRequest)(nil), "node.SigningRequest")
|
|
|
|
proto.RegisterType((*SigningResponse)(nil), "node.SigningResponse")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ context.Context
|
|
|
|
var _ grpc.ClientConn
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the grpc package it is being compiled against.
|
|
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
|
|
|
|
// CertificatesClient is the client API for Certificates service.
|
|
|
|
//
|
|
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
|
|
type CertificatesClient interface {
|
|
|
|
Sign(ctx context.Context, in *SigningRequest, opts ...grpc.CallOption) (*SigningResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type certificatesClient struct {
|
|
|
|
cc *grpc.ClientConn
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCertificatesClient(cc *grpc.ClientConn) CertificatesClient {
|
|
|
|
return &certificatesClient{cc}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *certificatesClient) Sign(ctx context.Context, in *SigningRequest, opts ...grpc.CallOption) (*SigningResponse, error) {
|
|
|
|
out := new(SigningResponse)
|
|
|
|
err := c.cc.Invoke(ctx, "/node.Certificates/Sign", in, out, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CertificatesServer is the server API for Certificates service.
|
|
|
|
type CertificatesServer interface {
|
|
|
|
Sign(context.Context, *SigningRequest) (*SigningResponse, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RegisterCertificatesServer(s *grpc.Server, srv CertificatesServer) {
|
|
|
|
s.RegisterService(&_Certificates_serviceDesc, srv)
|
|
|
|
}
|
|
|
|
|
|
|
|
func _Certificates_Sign_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
in := new(SigningRequest)
|
|
|
|
if err := dec(in); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if interceptor == nil {
|
|
|
|
return srv.(CertificatesServer).Sign(ctx, in)
|
|
|
|
}
|
|
|
|
info := &grpc.UnaryServerInfo{
|
|
|
|
Server: srv,
|
|
|
|
FullMethod: "/node.Certificates/Sign",
|
|
|
|
}
|
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
return srv.(CertificatesServer).Sign(ctx, req.(*SigningRequest))
|
|
|
|
}
|
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _Certificates_serviceDesc = grpc.ServiceDesc{
|
|
|
|
ServiceName: "node.Certificates",
|
|
|
|
HandlerType: (*CertificatesServer)(nil),
|
|
|
|
Methods: []grpc.MethodDesc{
|
|
|
|
{
|
|
|
|
MethodName: "Sign",
|
|
|
|
Handler: _Certificates_Sign_Handler,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Streams: []grpc.StreamDesc{},
|
|
|
|
Metadata: "certificate.proto",
|
|
|
|
}
|
|
|
|
|
2019-01-25 16:23:25 +00:00
|
|
|
func init() { proto.RegisterFile("certificate.proto", fileDescriptor_certificate_2545cbff56dfc715) }
|
2018-12-20 18:29:05 +00:00
|
|
|
|
2019-01-25 16:23:25 +00:00
|
|
|
var fileDescriptor_certificate_2545cbff56dfc715 = []byte{
|
2019-01-02 17:39:17 +00:00
|
|
|
// 192 bytes of a gzipped FileDescriptorProto
|
2018-12-20 18:29:05 +00:00
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4c, 0x4e, 0x2d, 0x2a,
|
|
|
|
0xc9, 0x4c, 0xcb, 0x4c, 0x4e, 0x2c, 0x49, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0xc9,
|
2018-12-31 15:45:43 +00:00
|
|
|
0xcb, 0x4f, 0x49, 0x95, 0xe2, 0x4a, 0xcf, 0x4f, 0xcf, 0x87, 0x88, 0x28, 0xf9, 0x72, 0xf1, 0x05,
|
|
|
|
0x67, 0xa6, 0xe7, 0x65, 0xe6, 0xa5, 0x07, 0xa5, 0x16, 0x96, 0xa6, 0x16, 0x97, 0x08, 0xc9, 0x72,
|
|
|
|
0x71, 0x25, 0x96, 0x96, 0x64, 0xc4, 0x97, 0xe4, 0x67, 0xa7, 0xe6, 0x49, 0x30, 0x2a, 0x30, 0x6a,
|
|
|
|
0x70, 0x06, 0x71, 0x82, 0x44, 0x42, 0x40, 0x02, 0x42, 0x32, 0x5c, 0x9c, 0x25, 0x99, 0xb9, 0xa9,
|
2019-01-02 17:39:17 +00:00
|
|
|
0xc5, 0x25, 0x89, 0xb9, 0x05, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0xcc, 0x41, 0x08, 0x01, 0x25, 0x75,
|
|
|
|
0x2e, 0x7e, 0xb8, 0x71, 0xc5, 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x42, 0x22, 0x5c, 0xac, 0xc9, 0x19,
|
|
|
|
0x89, 0x99, 0x20, 0xa3, 0x98, 0x35, 0x78, 0x82, 0x20, 0x1c, 0x23, 0x67, 0x2e, 0x1e, 0x67, 0x84,
|
|
|
|
0xf3, 0x8a, 0x85, 0x8c, 0xb9, 0x58, 0x40, 0x1a, 0x85, 0x44, 0xf4, 0x40, 0x4e, 0xd4, 0x43, 0x75,
|
|
|
|
0x93, 0x94, 0x28, 0x9a, 0x28, 0xc4, 0x68, 0x27, 0x96, 0x28, 0xa6, 0x82, 0xa4, 0x24, 0x36, 0xb0,
|
|
|
|
0x4f, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3a, 0xd8, 0xc7, 0x87, 0xf0, 0x00, 0x00, 0x00,
|
2018-12-20 18:29:05 +00:00
|
|
|
}
|