Documentation ¶
Index ¶
- Constants
- Variables
- func RegisterSimAuthenticationServiceServer(s grpc.ServiceRegistrar, srv SimAuthenticationServiceServer)
- type EapAkaAuthenticationVector
- func (*EapAkaAuthenticationVector) Descriptor() ([]byte, []int)deprecated
- func (x *EapAkaAuthenticationVector) GetAutn() []byte
- func (x *EapAkaAuthenticationVector) GetCk() []byte
- func (x *EapAkaAuthenticationVector) GetIk() []byte
- func (x *EapAkaAuthenticationVector) GetRand() []byte
- func (x *EapAkaAuthenticationVector) GetXres() []byte
- func (*EapAkaAuthenticationVector) ProtoMessage()
- func (x *EapAkaAuthenticationVector) ProtoReflect() protoreflect.Message
- func (x *EapAkaAuthenticationVector) Reset()
- func (x *EapAkaAuthenticationVector) String() string
- type GenerateEapAkaAuthenticationVectorRequest
- func (*GenerateEapAkaAuthenticationVectorRequest) Descriptor() ([]byte, []int)deprecated
- func (x *GenerateEapAkaAuthenticationVectorRequest) GetImsi() *v1.Imsi
- func (*GenerateEapAkaAuthenticationVectorRequest) ProtoMessage()
- func (x *GenerateEapAkaAuthenticationVectorRequest) ProtoReflect() protoreflect.Message
- func (x *GenerateEapAkaAuthenticationVectorRequest) Reset()
- func (x *GenerateEapAkaAuthenticationVectorRequest) String() string
- type GenerateEapAkaAuthenticationVectorResponse
- func (*GenerateEapAkaAuthenticationVectorResponse) Descriptor() ([]byte, []int)deprecated
- func (x *GenerateEapAkaAuthenticationVectorResponse) GetAuthenticationVector() *EapAkaAuthenticationVector
- func (*GenerateEapAkaAuthenticationVectorResponse) ProtoMessage()
- func (x *GenerateEapAkaAuthenticationVectorResponse) ProtoReflect() protoreflect.Message
- func (x *GenerateEapAkaAuthenticationVectorResponse) Reset()
- func (x *GenerateEapAkaAuthenticationVectorResponse) String() string
- type SimAuthenticationServiceClient
- type SimAuthenticationServiceServer
- type UnimplementedSimAuthenticationServiceServer
- type UnsafeSimAuthenticationServiceServer
Constants ¶
const (
SimAuthenticationService_GenerateEapAkaAuthenticationVector_FullMethodName = "/wgtwo.sim.v0.SimAuthenticationService/GenerateEapAkaAuthenticationVector"
)
Variables ¶
var File_wgtwo_sim_v0_authentication_proto protoreflect.FileDescriptor
var SimAuthenticationService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "wgtwo.sim.v0.SimAuthenticationService", HandlerType: (*SimAuthenticationServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GenerateEapAkaAuthenticationVector", Handler: _SimAuthenticationService_GenerateEapAkaAuthenticationVector_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "wgtwo/sim/v0/authentication.proto", }
SimAuthenticationService_ServiceDesc is the grpc.ServiceDesc for SimAuthenticationService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterSimAuthenticationServiceServer ¶
func RegisterSimAuthenticationServiceServer(s grpc.ServiceRegistrar, srv SimAuthenticationServiceServer)
Types ¶
type EapAkaAuthenticationVector ¶
type EapAkaAuthenticationVector struct { Rand []byte `protobuf:"bytes,1,opt,name=rand,proto3" json:"rand,omitempty"` Xres []byte `protobuf:"bytes,2,opt,name=xres,proto3" json:"xres,omitempty"` Autn []byte `protobuf:"bytes,3,opt,name=autn,proto3" json:"autn,omitempty"` Ck []byte `protobuf:"bytes,4,opt,name=ck,proto3" json:"ck,omitempty"` Ik []byte `protobuf:"bytes,5,opt,name=ik,proto3" json:"ik,omitempty"` // contains filtered or unexported fields }
func (*EapAkaAuthenticationVector) Descriptor
deprecated
func (*EapAkaAuthenticationVector) Descriptor() ([]byte, []int)
Deprecated: Use EapAkaAuthenticationVector.ProtoReflect.Descriptor instead.
func (*EapAkaAuthenticationVector) GetAutn ¶
func (x *EapAkaAuthenticationVector) GetAutn() []byte
func (*EapAkaAuthenticationVector) GetCk ¶
func (x *EapAkaAuthenticationVector) GetCk() []byte
func (*EapAkaAuthenticationVector) GetIk ¶
func (x *EapAkaAuthenticationVector) GetIk() []byte
func (*EapAkaAuthenticationVector) GetRand ¶
func (x *EapAkaAuthenticationVector) GetRand() []byte
func (*EapAkaAuthenticationVector) GetXres ¶
func (x *EapAkaAuthenticationVector) GetXres() []byte
func (*EapAkaAuthenticationVector) ProtoMessage ¶
func (*EapAkaAuthenticationVector) ProtoMessage()
func (*EapAkaAuthenticationVector) ProtoReflect ¶
func (x *EapAkaAuthenticationVector) ProtoReflect() protoreflect.Message
func (*EapAkaAuthenticationVector) Reset ¶
func (x *EapAkaAuthenticationVector) Reset()
func (*EapAkaAuthenticationVector) String ¶
func (x *EapAkaAuthenticationVector) String() string
type GenerateEapAkaAuthenticationVectorRequest ¶
type GenerateEapAkaAuthenticationVectorRequest struct { Imsi *v1.Imsi `protobuf:"bytes,1,opt,name=imsi,proto3" json:"imsi,omitempty"` // contains filtered or unexported fields }
func (*GenerateEapAkaAuthenticationVectorRequest) Descriptor
deprecated
func (*GenerateEapAkaAuthenticationVectorRequest) Descriptor() ([]byte, []int)
Deprecated: Use GenerateEapAkaAuthenticationVectorRequest.ProtoReflect.Descriptor instead.
func (*GenerateEapAkaAuthenticationVectorRequest) GetImsi ¶
func (x *GenerateEapAkaAuthenticationVectorRequest) GetImsi() *v1.Imsi
func (*GenerateEapAkaAuthenticationVectorRequest) ProtoMessage ¶
func (*GenerateEapAkaAuthenticationVectorRequest) ProtoMessage()
func (*GenerateEapAkaAuthenticationVectorRequest) ProtoReflect ¶
func (x *GenerateEapAkaAuthenticationVectorRequest) ProtoReflect() protoreflect.Message
func (*GenerateEapAkaAuthenticationVectorRequest) Reset ¶
func (x *GenerateEapAkaAuthenticationVectorRequest) Reset()
func (*GenerateEapAkaAuthenticationVectorRequest) String ¶
func (x *GenerateEapAkaAuthenticationVectorRequest) String() string
type GenerateEapAkaAuthenticationVectorResponse ¶
type GenerateEapAkaAuthenticationVectorResponse struct { AuthenticationVector *EapAkaAuthenticationVector `protobuf:"bytes,1,opt,name=authentication_vector,json=authenticationVector,proto3" json:"authentication_vector,omitempty"` // contains filtered or unexported fields }
func (*GenerateEapAkaAuthenticationVectorResponse) Descriptor
deprecated
func (*GenerateEapAkaAuthenticationVectorResponse) Descriptor() ([]byte, []int)
Deprecated: Use GenerateEapAkaAuthenticationVectorResponse.ProtoReflect.Descriptor instead.
func (*GenerateEapAkaAuthenticationVectorResponse) GetAuthenticationVector ¶
func (x *GenerateEapAkaAuthenticationVectorResponse) GetAuthenticationVector() *EapAkaAuthenticationVector
func (*GenerateEapAkaAuthenticationVectorResponse) ProtoMessage ¶
func (*GenerateEapAkaAuthenticationVectorResponse) ProtoMessage()
func (*GenerateEapAkaAuthenticationVectorResponse) ProtoReflect ¶
func (x *GenerateEapAkaAuthenticationVectorResponse) ProtoReflect() protoreflect.Message
func (*GenerateEapAkaAuthenticationVectorResponse) Reset ¶
func (x *GenerateEapAkaAuthenticationVectorResponse) Reset()
func (*GenerateEapAkaAuthenticationVectorResponse) String ¶
func (x *GenerateEapAkaAuthenticationVectorResponse) String() string
type SimAuthenticationServiceClient ¶
type SimAuthenticationServiceClient interface {
GenerateEapAkaAuthenticationVector(ctx context.Context, in *GenerateEapAkaAuthenticationVectorRequest, opts ...grpc.CallOption) (*GenerateEapAkaAuthenticationVectorResponse, error)
}
SimAuthenticationServiceClient is the client API for SimAuthenticationService 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 NewSimAuthenticationServiceClient ¶
func NewSimAuthenticationServiceClient(cc grpc.ClientConnInterface) SimAuthenticationServiceClient
type SimAuthenticationServiceServer ¶
type SimAuthenticationServiceServer interface {
GenerateEapAkaAuthenticationVector(context.Context, *GenerateEapAkaAuthenticationVectorRequest) (*GenerateEapAkaAuthenticationVectorResponse, error)
}
SimAuthenticationServiceServer is the server API for SimAuthenticationService service. All implementations should embed UnimplementedSimAuthenticationServiceServer for forward compatibility.
type UnimplementedSimAuthenticationServiceServer ¶
type UnimplementedSimAuthenticationServiceServer struct{}
UnimplementedSimAuthenticationServiceServer should be embedded to have forward compatible implementations.
NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.
func (UnimplementedSimAuthenticationServiceServer) GenerateEapAkaAuthenticationVector ¶
func (UnimplementedSimAuthenticationServiceServer) GenerateEapAkaAuthenticationVector(context.Context, *GenerateEapAkaAuthenticationVectorRequest) (*GenerateEapAkaAuthenticationVectorResponse, error)
type UnsafeSimAuthenticationServiceServer ¶
type UnsafeSimAuthenticationServiceServer interface {
// contains filtered or unexported methods
}
UnsafeSimAuthenticationServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to SimAuthenticationServiceServer will result in compilation errors.