Versions in this module Expand all Collapse all v0 v0.0.1 Mar 2, 2018 Changes in this version + func RegisterPasswordAuthenticatorServer(s *grpc.Server, srv PasswordAuthenticatorServer) + type AuthenticateResponse struct + Authenticated bool + Status int32 + func (*AuthenticateResponse) Descriptor() ([]byte, []int) + func (*AuthenticateResponse) ProtoMessage() + func (m *AuthenticateResponse) GetAuthenticated() bool + func (m *AuthenticateResponse) GetStatus() int32 + func (m *AuthenticateResponse) Reset() + func (m *AuthenticateResponse) String() string + type CredentialsRequest struct + Password string + Username string + func (*CredentialsRequest) Descriptor() ([]byte, []int) + func (*CredentialsRequest) ProtoMessage() + func (m *CredentialsRequest) GetPassword() string + func (m *CredentialsRequest) GetUsername() string + func (m *CredentialsRequest) Reset() + func (m *CredentialsRequest) String() string + type PasswordAuthenticatorClient interface + Authenticate func(ctx context.Context, in *CredentialsRequest, opts ...grpc.CallOption) (*AuthenticateResponse, error) + func NewPasswordAuthenticatorClient(cc *grpc.ClientConn) PasswordAuthenticatorClient + type PasswordAuthenticatorServer interface + Authenticate func(context.Context, *CredentialsRequest) (*AuthenticateResponse, error)