common

package
v1.34.0-20230522131215... Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: unknown License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_nuntio_management_model_common_common_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type BcryptHashingConfig

type BcryptHashingConfig struct {
	Cost int32 `protobuf:"varint,1,opt,name=cost,proto3" json:"cost,omitempty"`
	// contains filtered or unexported fields
}

func (*BcryptHashingConfig) Descriptor deprecated

func (*BcryptHashingConfig) Descriptor() ([]byte, []int)

Deprecated: Use BcryptHashingConfig.ProtoReflect.Descriptor instead.

func (*BcryptHashingConfig) GetCost

func (x *BcryptHashingConfig) GetCost() int32

func (*BcryptHashingConfig) ProtoMessage

func (*BcryptHashingConfig) ProtoMessage()

func (*BcryptHashingConfig) ProtoReflect

func (x *BcryptHashingConfig) ProtoReflect() protoreflect.Message

func (*BcryptHashingConfig) Reset

func (x *BcryptHashingConfig) Reset()

func (*BcryptHashingConfig) String

func (x *BcryptHashingConfig) String() string

type BcryptHashingInstance

type BcryptHashingInstance struct {
	// contains filtered or unexported fields
}

func (*BcryptHashingInstance) Descriptor deprecated

func (*BcryptHashingInstance) Descriptor() ([]byte, []int)

Deprecated: Use BcryptHashingInstance.ProtoReflect.Descriptor instead.

func (*BcryptHashingInstance) ProtoMessage

func (*BcryptHashingInstance) ProtoMessage()

func (*BcryptHashingInstance) ProtoReflect

func (x *BcryptHashingInstance) ProtoReflect() protoreflect.Message

func (*BcryptHashingInstance) Reset

func (x *BcryptHashingInstance) Reset()

func (*BcryptHashingInstance) String

func (x *BcryptHashingInstance) String() string

type Image

type Image struct {
	Url       string                 `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	ExpiresAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	Expires   bool                   `protobuf:"varint,3,opt,name=expires,proto3" json:"expires,omitempty"`
	Key       string                 `protobuf:"bytes,4,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*Image) Descriptor deprecated

func (*Image) Descriptor() ([]byte, []int)

Deprecated: Use Image.ProtoReflect.Descriptor instead.

func (*Image) GetExpires

func (x *Image) GetExpires() bool

func (*Image) GetExpiresAt

func (x *Image) GetExpiresAt() *timestamppb.Timestamp

func (*Image) GetKey

func (x *Image) GetKey() string

func (*Image) GetUrl

func (x *Image) GetUrl() string

func (*Image) ProtoMessage

func (*Image) ProtoMessage()

func (*Image) ProtoReflect

func (x *Image) ProtoReflect() protoreflect.Message

func (*Image) Reset

func (x *Image) Reset()

func (*Image) String

func (x *Image) String() string

type PasswordHashingConfig

type PasswordHashingConfig struct {

	// Types that are assignable to Method:
	//
	//	*PasswordHashingConfig_Bcrypt
	//	*PasswordHashingConfig_Scrypt
	Method isPasswordHashingConfig_Method `protobuf_oneof:"method"`
	// contains filtered or unexported fields
}

func (*PasswordHashingConfig) Descriptor deprecated

func (*PasswordHashingConfig) Descriptor() ([]byte, []int)

Deprecated: Use PasswordHashingConfig.ProtoReflect.Descriptor instead.

func (*PasswordHashingConfig) GetBcrypt

func (*PasswordHashingConfig) GetMethod

func (m *PasswordHashingConfig) GetMethod() isPasswordHashingConfig_Method

func (*PasswordHashingConfig) GetScrypt

func (*PasswordHashingConfig) ProtoMessage

func (*PasswordHashingConfig) ProtoMessage()

func (*PasswordHashingConfig) ProtoReflect

func (x *PasswordHashingConfig) ProtoReflect() protoreflect.Message

func (*PasswordHashingConfig) Reset

func (x *PasswordHashingConfig) Reset()

func (*PasswordHashingConfig) String

func (x *PasswordHashingConfig) String() string

type PasswordHashingConfig_Bcrypt

type PasswordHashingConfig_Bcrypt struct {
	Bcrypt *BcryptHashingConfig `protobuf:"bytes,1,opt,name=bcrypt,proto3,oneof"`
}

type PasswordHashingConfig_Scrypt

type PasswordHashingConfig_Scrypt struct {
	Scrypt *ScryptHashingConfig `protobuf:"bytes,2,opt,name=scrypt,proto3,oneof"`
}

type PasswordHashingInstance

type PasswordHashingInstance struct {

	// Types that are assignable to Method:
	//
	//	*PasswordHashingInstance_Bcrypt
	//	*PasswordHashingInstance_Scrypt
	Method isPasswordHashingInstance_Method `protobuf_oneof:"method"`
	// contains filtered or unexported fields
}

func (*PasswordHashingInstance) Descriptor deprecated

func (*PasswordHashingInstance) Descriptor() ([]byte, []int)

Deprecated: Use PasswordHashingInstance.ProtoReflect.Descriptor instead.

func (*PasswordHashingInstance) GetBcrypt

func (*PasswordHashingInstance) GetMethod

func (m *PasswordHashingInstance) GetMethod() isPasswordHashingInstance_Method

func (*PasswordHashingInstance) GetScrypt

func (*PasswordHashingInstance) ProtoMessage

func (*PasswordHashingInstance) ProtoMessage()

func (*PasswordHashingInstance) ProtoReflect

func (x *PasswordHashingInstance) ProtoReflect() protoreflect.Message

func (*PasswordHashingInstance) Reset

func (x *PasswordHashingInstance) Reset()

func (*PasswordHashingInstance) String

func (x *PasswordHashingInstance) String() string

type PasswordHashingInstance_Bcrypt

type PasswordHashingInstance_Bcrypt struct {
	Bcrypt *BcryptHashingInstance `protobuf:"bytes,1,opt,name=bcrypt,proto3,oneof"`
}

type PasswordHashingInstance_Scrypt

type PasswordHashingInstance_Scrypt struct {
	Scrypt *ScryptHashingInstance `protobuf:"bytes,2,opt,name=scrypt,proto3,oneof"`
}

type ScryptHashingConfig

type ScryptHashingConfig struct {
	SignerKey     string `protobuf:"bytes,1,opt,name=signer_key,json=signerKey,proto3" json:"signer_key,omitempty"`
	SaltSeparator string `protobuf:"bytes,2,opt,name=salt_separator,json=saltSeparator,proto3" json:"salt_separator,omitempty"`
	Rounds        int32  `protobuf:"varint,3,opt,name=rounds,proto3" json:"rounds,omitempty"`
	MemCost       int32  `protobuf:"varint,4,opt,name=mem_cost,json=memCost,proto3" json:"mem_cost,omitempty"`
	P             int32  `protobuf:"varint,5,opt,name=p,proto3" json:"p,omitempty"`
	KeyLen        int32  `protobuf:"varint,6,opt,name=key_len,json=keyLen,proto3" json:"key_len,omitempty"`
	// contains filtered or unexported fields
}

func (*ScryptHashingConfig) Descriptor deprecated

func (*ScryptHashingConfig) Descriptor() ([]byte, []int)

Deprecated: Use ScryptHashingConfig.ProtoReflect.Descriptor instead.

func (*ScryptHashingConfig) GetKeyLen

func (x *ScryptHashingConfig) GetKeyLen() int32

func (*ScryptHashingConfig) GetMemCost

func (x *ScryptHashingConfig) GetMemCost() int32

func (*ScryptHashingConfig) GetP

func (x *ScryptHashingConfig) GetP() int32

func (*ScryptHashingConfig) GetRounds

func (x *ScryptHashingConfig) GetRounds() int32

func (*ScryptHashingConfig) GetSaltSeparator

func (x *ScryptHashingConfig) GetSaltSeparator() string

func (*ScryptHashingConfig) GetSignerKey

func (x *ScryptHashingConfig) GetSignerKey() string

func (*ScryptHashingConfig) ProtoMessage

func (*ScryptHashingConfig) ProtoMessage()

func (*ScryptHashingConfig) ProtoReflect

func (x *ScryptHashingConfig) ProtoReflect() protoreflect.Message

func (*ScryptHashingConfig) Reset

func (x *ScryptHashingConfig) Reset()

func (*ScryptHashingConfig) String

func (x *ScryptHashingConfig) String() string

type ScryptHashingInstance

type ScryptHashingInstance struct {
	Config *ScryptHashingConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	Salt   []byte               `protobuf:"bytes,2,opt,name=salt,proto3" json:"salt,omitempty"`
	// contains filtered or unexported fields
}

func (*ScryptHashingInstance) Descriptor deprecated

func (*ScryptHashingInstance) Descriptor() ([]byte, []int)

Deprecated: Use ScryptHashingInstance.ProtoReflect.Descriptor instead.

func (*ScryptHashingInstance) GetConfig

func (*ScryptHashingInstance) GetSalt

func (x *ScryptHashingInstance) GetSalt() []byte

func (*ScryptHashingInstance) ProtoMessage

func (*ScryptHashingInstance) ProtoMessage()

func (*ScryptHashingInstance) ProtoReflect

func (x *ScryptHashingInstance) ProtoReflect() protoreflect.Message

func (*ScryptHashingInstance) Reset

func (x *ScryptHashingInstance) Reset()

func (*ScryptHashingInstance) String

func (x *ScryptHashingInstance) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL