Documentation ¶
Index ¶
- Variables
- func RegisterSecurityServiceServer(s grpc.ServiceRegistrar, srv SecurityServiceServer)
- type CertificateRequest
- func (*CertificateRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CertificateRequest) GetCsr() []byte
- func (m *CertificateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)
- func (m *CertificateRequest) MarshalToVT(dAtA []byte) (int, error)
- func (m *CertificateRequest) MarshalVT() (dAtA []byte, err error)
- func (*CertificateRequest) ProtoMessage()
- func (x *CertificateRequest) ProtoReflect() protoreflect.Message
- func (x *CertificateRequest) Reset()
- func (m *CertificateRequest) SizeVT() (n int)
- func (x *CertificateRequest) String() string
- func (m *CertificateRequest) UnmarshalVT(dAtA []byte) error
- type CertificateResponse
- func (*CertificateResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CertificateResponse) GetCa() []byte
- func (x *CertificateResponse) GetCrt() []byte
- func (m *CertificateResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)
- func (m *CertificateResponse) MarshalToVT(dAtA []byte) (int, error)
- func (m *CertificateResponse) MarshalVT() (dAtA []byte, err error)
- func (*CertificateResponse) ProtoMessage()
- func (x *CertificateResponse) ProtoReflect() protoreflect.Message
- func (x *CertificateResponse) Reset()
- func (m *CertificateResponse) SizeVT() (n int)
- func (x *CertificateResponse) String() string
- func (m *CertificateResponse) UnmarshalVT(dAtA []byte) error
- type SecurityServiceClient
- type SecurityServiceServer
- type UnimplementedSecurityServiceServer
- type UnsafeSecurityServiceServer
Constants ¶
This section is empty.
Variables ¶
var ( ErrInvalidLength = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflow = fmt.Errorf("proto: integer overflow") ErrUnexpectedEndOfGroup = fmt.Errorf("proto: unexpected end of group") )
var File_security_security_proto protoreflect.FileDescriptor
var SecurityService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "securityapi.SecurityService", HandlerType: (*SecurityServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Certificate", Handler: _SecurityService_Certificate_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "security/security.proto", }
SecurityService_ServiceDesc is the grpc.ServiceDesc for SecurityService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterSecurityServiceServer ¶
func RegisterSecurityServiceServer(s grpc.ServiceRegistrar, srv SecurityServiceServer)
Types ¶
type CertificateRequest ¶
type CertificateRequest struct { // Certificate Signing Request in PEM format. Csr []byte `protobuf:"bytes,1,opt,name=csr,proto3" json:"csr,omitempty"` // contains filtered or unexported fields }
The request message containing the certificate signing request.
func (*CertificateRequest) Descriptor
deprecated
func (*CertificateRequest) Descriptor() ([]byte, []int)
Deprecated: Use CertificateRequest.ProtoReflect.Descriptor instead.
func (*CertificateRequest) GetCsr ¶
func (x *CertificateRequest) GetCsr() []byte
func (*CertificateRequest) MarshalToSizedBufferVT ¶ added in v0.12.0
func (m *CertificateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)
func (*CertificateRequest) MarshalToVT ¶ added in v0.12.0
func (m *CertificateRequest) MarshalToVT(dAtA []byte) (int, error)
func (*CertificateRequest) MarshalVT ¶ added in v0.12.0
func (m *CertificateRequest) MarshalVT() (dAtA []byte, err error)
func (*CertificateRequest) ProtoMessage ¶
func (*CertificateRequest) ProtoMessage()
func (*CertificateRequest) ProtoReflect ¶
func (x *CertificateRequest) ProtoReflect() protoreflect.Message
func (*CertificateRequest) Reset ¶
func (x *CertificateRequest) Reset()
func (*CertificateRequest) SizeVT ¶ added in v0.12.0
func (m *CertificateRequest) SizeVT() (n int)
func (*CertificateRequest) String ¶
func (x *CertificateRequest) String() string
func (*CertificateRequest) UnmarshalVT ¶ added in v0.12.0
func (m *CertificateRequest) UnmarshalVT(dAtA []byte) error
type CertificateResponse ¶
type CertificateResponse struct { // Certificate of the CA that signed the requested certificate in PEM format. Ca []byte `protobuf:"bytes,1,opt,name=ca,proto3" json:"ca,omitempty"` // Signed X.509 requested certificate in PEM format. Crt []byte `protobuf:"bytes,2,opt,name=crt,proto3" json:"crt,omitempty"` // contains filtered or unexported fields }
The response message containing signed certificate.
func (*CertificateResponse) Descriptor
deprecated
func (*CertificateResponse) Descriptor() ([]byte, []int)
Deprecated: Use CertificateResponse.ProtoReflect.Descriptor instead.
func (*CertificateResponse) GetCa ¶
func (x *CertificateResponse) GetCa() []byte
func (*CertificateResponse) GetCrt ¶
func (x *CertificateResponse) GetCrt() []byte
func (*CertificateResponse) MarshalToSizedBufferVT ¶ added in v0.12.0
func (m *CertificateResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)
func (*CertificateResponse) MarshalToVT ¶ added in v0.12.0
func (m *CertificateResponse) MarshalToVT(dAtA []byte) (int, error)
func (*CertificateResponse) MarshalVT ¶ added in v0.12.0
func (m *CertificateResponse) MarshalVT() (dAtA []byte, err error)
func (*CertificateResponse) ProtoMessage ¶
func (*CertificateResponse) ProtoMessage()
func (*CertificateResponse) ProtoReflect ¶
func (x *CertificateResponse) ProtoReflect() protoreflect.Message
func (*CertificateResponse) Reset ¶
func (x *CertificateResponse) Reset()
func (*CertificateResponse) SizeVT ¶ added in v0.12.0
func (m *CertificateResponse) SizeVT() (n int)
func (*CertificateResponse) String ¶
func (x *CertificateResponse) String() string
func (*CertificateResponse) UnmarshalVT ¶ added in v0.12.0
func (m *CertificateResponse) UnmarshalVT(dAtA []byte) error
type SecurityServiceClient ¶
type SecurityServiceClient interface {
Certificate(ctx context.Context, in *CertificateRequest, opts ...grpc.CallOption) (*CertificateResponse, error)
}
SecurityServiceClient is the client API for SecurityService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
func NewSecurityServiceClient ¶
func NewSecurityServiceClient(cc grpc.ClientConnInterface) SecurityServiceClient
type SecurityServiceServer ¶
type SecurityServiceServer interface { Certificate(context.Context, *CertificateRequest) (*CertificateResponse, error) // contains filtered or unexported methods }
SecurityServiceServer is the server API for SecurityService service. All implementations must embed UnimplementedSecurityServiceServer for forward compatibility
type UnimplementedSecurityServiceServer ¶
type UnimplementedSecurityServiceServer struct { }
UnimplementedSecurityServiceServer must be embedded to have forward compatible implementations.
func (UnimplementedSecurityServiceServer) Certificate ¶
func (UnimplementedSecurityServiceServer) Certificate(context.Context, *CertificateRequest) (*CertificateResponse, error)
type UnsafeSecurityServiceServer ¶
type UnsafeSecurityServiceServer interface {
// contains filtered or unexported methods
}
UnsafeSecurityServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to SecurityServiceServer will result in compilation errors.