Documentation ¶
Index ¶
- Variables
- type Config
- func (*Config) Descriptor() ([]byte, []int)deprecated
- func (x *Config) GetAudience() []string
- func (x *Config) GetIssuer() string
- func (x *Config) GetKey() []byte
- func (x *Config) GetKey2() []byte
- func (x *Config) GetKeyfunc() string
- func (x *Config) GetSigningMethod() string
- func (x *Config) GetTokenLifetime() *durationpb.Duration
- func (x *Config) GetTokenType() string
- func (*Config) ProtoMessage()
- func (x *Config) ProtoReflect() protoreflect.Message
- func (x *Config) Reset()
- func (x *Config) String() string
- func (m *Config) Validate() error
- func (m *Config) ValidateAll() error
- type ConfigMultiError
- type ConfigValidationError
- type Token
- func (*Token) Descriptor() ([]byte, []int)deprecated
- func (x *Token) GetAccessToken() string
- func (x *Token) GetClaims() *v1.Claims
- func (x *Token) GetClientId() string
- func (x *Token) GetExpirationTime() *timestamppb.Timestamp
- func (x *Token) GetRefreshToken() string
- func (x *Token) GetUserId() string
- func (*Token) ProtoMessage()
- func (x *Token) ProtoReflect() protoreflect.Message
- func (x *Token) Reset()
- func (x *Token) String() string
- func (m *Token) Validate() error
- func (m *Token) ValidateAll() error
- type TokenMultiError
- type TokenValidationError
Constants ¶
This section is empty.
Variables ¶
var File_pwt_v1_token_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Config ¶ added in v0.0.13
type Config struct { SigningMethod string `protobuf:"bytes,1,opt,name=signing_method,proto3" json:"signing_method,omitempty"` Key []byte `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"` Key2 []byte `protobuf:"bytes,3,opt,name=key2,proto3" json:"key2,omitempty"` Keyfunc string `protobuf:"bytes,4,opt,name=keyfunc,proto3" json:"keyfunc,omitempty"` TokenLifetime *durationpb.Duration `protobuf:"bytes,5,opt,name=token_lifetime,proto3" json:"token_lifetime,omitempty"` Issuer string `protobuf:"bytes,6,opt,name=issuer,proto3" json:"issuer,omitempty"` Audience []string `protobuf:"bytes,7,rep,name=audience,proto3" json:"audience,omitempty"` // Audience TokenType string `protobuf:"bytes,8,opt,name=token_type,proto3" json:"token_type,omitempty"` // contains filtered or unexported fields }
Config contains configuration parameters for creating and validating a JWT.
func (*Config) Descriptor
deprecated
added in
v0.0.13
func (*Config) GetAudience ¶ added in v0.0.13
func (*Config) GetKeyfunc ¶ added in v0.0.13
func (*Config) GetSigningMethod ¶ added in v0.0.13
func (*Config) GetTokenLifetime ¶ added in v0.0.13
func (x *Config) GetTokenLifetime() *durationpb.Duration
func (*Config) GetTokenType ¶ added in v0.0.13
func (*Config) ProtoMessage ¶ added in v0.0.13
func (*Config) ProtoMessage()
func (*Config) ProtoReflect ¶ added in v0.0.13
func (x *Config) ProtoReflect() protoreflect.Message
func (*Config) Validate ¶ added in v0.0.13
Validate checks the field values on Config with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*Config) ValidateAll ¶ added in v0.0.13
ValidateAll checks the field values on Config with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ConfigMultiError, or nil if none found.
type ConfigMultiError ¶ added in v0.0.13
type ConfigMultiError []error
ConfigMultiError is an error wrapping multiple validation errors returned by Config.ValidateAll() if the designated constraints aren't met.
func (ConfigMultiError) AllErrors ¶ added in v0.0.13
func (m ConfigMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (ConfigMultiError) Error ¶ added in v0.0.13
func (m ConfigMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type ConfigValidationError ¶ added in v0.0.13
type ConfigValidationError struct {
// contains filtered or unexported fields
}
ConfigValidationError is the validation error returned by Config.Validate if the designated constraints aren't met.
func (ConfigValidationError) Cause ¶ added in v0.0.13
func (e ConfigValidationError) Cause() error
Cause function returns cause value.
func (ConfigValidationError) Error ¶ added in v0.0.13
func (e ConfigValidationError) Error() string
Error satisfies the builtin error interface
func (ConfigValidationError) ErrorName ¶ added in v0.0.13
func (e ConfigValidationError) ErrorName() string
ErrorName returns error name.
func (ConfigValidationError) Field ¶ added in v0.0.13
func (e ConfigValidationError) Field() string
Field function returns field value.
func (ConfigValidationError) Key ¶ added in v0.0.13
func (e ConfigValidationError) Key() bool
Key function returns key value.
func (ConfigValidationError) Reason ¶ added in v0.0.13
func (e ConfigValidationError) Reason() string
Reason function returns reason value.
type Token ¶ added in v0.0.6
type Token struct { ClientId string `protobuf:"bytes,1,opt,name=client_id,proto3" json:"client_id,omitempty"` UserId string `protobuf:"bytes,2,opt,name=user_id,proto3" json:"user_id,omitempty"` AccessToken string `protobuf:"bytes,10,opt,name=access_token,proto3" json:"access_token,omitempty"` RefreshToken string `protobuf:"bytes,11,opt,name=refresh_token,proto3" json:"refresh_token,omitempty"` ExpirationTime *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=expiration_time,proto3" json:"expiration_time,omitempty"` Claims *v1.Claims `protobuf:"bytes,20,opt,name=claims,proto3" json:"claims,omitempty"` // Claims // contains filtered or unexported fields }
PWT is a web token that can be used to authenticate a user with protobuf services.
func (*Token) Descriptor
deprecated
added in
v0.0.6
func (*Token) GetAccessToken ¶ added in v0.1.13
func (*Token) GetClientId ¶ added in v0.0.6
func (*Token) GetExpirationTime ¶ added in v0.0.6
func (x *Token) GetExpirationTime() *timestamppb.Timestamp
func (*Token) GetRefreshToken ¶ added in v0.0.13
func (*Token) ProtoMessage ¶ added in v0.0.6
func (*Token) ProtoMessage()
func (*Token) ProtoReflect ¶ added in v0.0.6
func (x *Token) ProtoReflect() protoreflect.Message
func (*Token) Validate ¶ added in v0.0.6
Validate checks the field values on Token with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*Token) ValidateAll ¶ added in v0.0.6
ValidateAll checks the field values on Token with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TokenMultiError, or nil if none found.
type TokenMultiError ¶ added in v0.0.6
type TokenMultiError []error
TokenMultiError is an error wrapping multiple validation errors returned by Token.ValidateAll() if the designated constraints aren't met.
func (TokenMultiError) AllErrors ¶ added in v0.0.6
func (m TokenMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (TokenMultiError) Error ¶ added in v0.0.6
func (m TokenMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type TokenValidationError ¶ added in v0.0.6
type TokenValidationError struct {
// contains filtered or unexported fields
}
TokenValidationError is the validation error returned by Token.Validate if the designated constraints aren't met.
func (TokenValidationError) Cause ¶ added in v0.0.6
func (e TokenValidationError) Cause() error
Cause function returns cause value.
func (TokenValidationError) Error ¶ added in v0.0.6
func (e TokenValidationError) Error() string
Error satisfies the builtin error interface
func (TokenValidationError) ErrorName ¶ added in v0.0.6
func (e TokenValidationError) ErrorName() string
ErrorName returns error name.
func (TokenValidationError) Field ¶ added in v0.0.6
func (e TokenValidationError) Field() string
Field function returns field value.
func (TokenValidationError) Key ¶ added in v0.0.6
func (e TokenValidationError) Key() bool
Key function returns key value.
func (TokenValidationError) Reason ¶ added in v0.0.6
func (e TokenValidationError) Reason() string
Reason function returns reason value.