2019-07-01 23:17:30 +01:00
|
|
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
|
|
|
// source: encryption.proto
|
|
|
|
|
|
|
|
package pb
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/gogo/protobuf/proto"
|
|
|
|
math "math"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.GoGoProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
2019-07-08 23:32:18 +01:00
|
|
|
type CipherSuite int32
|
2019-07-01 23:17:30 +01:00
|
|
|
|
|
|
|
const (
|
2019-07-08 23:32:18 +01:00
|
|
|
CipherSuite_ENC_UNSPECIFIED CipherSuite = 0
|
|
|
|
CipherSuite_ENC_NULL CipherSuite = 1
|
|
|
|
CipherSuite_ENC_AESGCM CipherSuite = 2
|
|
|
|
CipherSuite_ENC_SECRETBOX CipherSuite = 3
|
2019-07-01 23:17:30 +01:00
|
|
|
)
|
|
|
|
|
2019-07-08 23:32:18 +01:00
|
|
|
var CipherSuite_name = map[int32]string{
|
2019-07-01 23:17:30 +01:00
|
|
|
0: "ENC_UNSPECIFIED",
|
|
|
|
1: "ENC_NULL",
|
|
|
|
2: "ENC_AESGCM",
|
|
|
|
3: "ENC_SECRETBOX",
|
|
|
|
}
|
|
|
|
|
2019-07-08 23:32:18 +01:00
|
|
|
var CipherSuite_value = map[string]int32{
|
2019-07-01 23:17:30 +01:00
|
|
|
"ENC_UNSPECIFIED": 0,
|
|
|
|
"ENC_NULL": 1,
|
|
|
|
"ENC_AESGCM": 2,
|
|
|
|
"ENC_SECRETBOX": 3,
|
|
|
|
}
|
|
|
|
|
2019-07-08 23:32:18 +01:00
|
|
|
func (x CipherSuite) String() string {
|
|
|
|
return proto.EnumName(CipherSuite_name, int32(x))
|
2019-07-01 23:17:30 +01:00
|
|
|
}
|
|
|
|
|
2019-07-08 23:32:18 +01:00
|
|
|
func (CipherSuite) EnumDescriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_8293a649ce9418c6, []int{0}
|
2019-07-01 23:17:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type EncryptionParameters struct {
|
2019-07-08 23:32:18 +01:00
|
|
|
CipherSuite CipherSuite `protobuf:"varint,1,opt,name=cipher_suite,json=cipherSuite,proto3,enum=encryption.CipherSuite" json:"cipher_suite,omitempty"`
|
|
|
|
BlockSize int64 `protobuf:"varint,2,opt,name=block_size,json=blockSize,proto3" json:"block_size,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2019-07-01 23:17:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EncryptionParameters) Reset() { *m = EncryptionParameters{} }
|
|
|
|
func (m *EncryptionParameters) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*EncryptionParameters) ProtoMessage() {}
|
|
|
|
func (*EncryptionParameters) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_8293a649ce9418c6, []int{0}
|
|
|
|
}
|
|
|
|
func (m *EncryptionParameters) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_EncryptionParameters.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *EncryptionParameters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_EncryptionParameters.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *EncryptionParameters) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_EncryptionParameters.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *EncryptionParameters) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_EncryptionParameters.Size(m)
|
|
|
|
}
|
|
|
|
func (m *EncryptionParameters) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_EncryptionParameters.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_EncryptionParameters proto.InternalMessageInfo
|
|
|
|
|
2019-07-08 23:32:18 +01:00
|
|
|
func (m *EncryptionParameters) GetCipherSuite() CipherSuite {
|
2019-07-01 23:17:30 +01:00
|
|
|
if m != nil {
|
|
|
|
return m.CipherSuite
|
|
|
|
}
|
2019-07-08 23:32:18 +01:00
|
|
|
return CipherSuite_ENC_UNSPECIFIED
|
2019-07-01 23:17:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *EncryptionParameters) GetBlockSize() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.BlockSize
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2019-07-08 23:32:18 +01:00
|
|
|
proto.RegisterEnum("encryption.CipherSuite", CipherSuite_name, CipherSuite_value)
|
2019-07-01 23:17:30 +01:00
|
|
|
proto.RegisterType((*EncryptionParameters)(nil), "encryption.EncryptionParameters")
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("encryption.proto", fileDescriptor_8293a649ce9418c6) }
|
|
|
|
|
|
|
|
var fileDescriptor_8293a649ce9418c6 = []byte{
|
2019-07-08 23:32:18 +01:00
|
|
|
// 209 bytes of a gzipped FileDescriptorProto
|
2019-07-01 23:17:30 +01:00
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x48, 0xcd, 0x4b, 0x2e,
|
|
|
|
0xaa, 0x2c, 0x28, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x42, 0x88,
|
2019-07-04 11:41:40 +01:00
|
|
|
0x28, 0x15, 0x72, 0x89, 0xb8, 0xc2, 0x79, 0x01, 0x89, 0x45, 0x89, 0xb9, 0xa9, 0x25, 0xa9, 0x45,
|
|
|
|
0xc5, 0x42, 0x56, 0x5c, 0x3c, 0xc9, 0x99, 0x05, 0x19, 0xa9, 0x45, 0xf1, 0xc5, 0xa5, 0x99, 0x25,
|
2019-07-08 23:32:18 +01:00
|
|
|
0xa9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x7c, 0x46, 0xe2, 0x7a, 0x48, 0x86, 0x39, 0x83, 0xe5, 0x83,
|
2019-07-04 11:41:40 +01:00
|
|
|
0x41, 0xd2, 0x41, 0xdc, 0xc9, 0x08, 0x8e, 0x90, 0x2c, 0x17, 0x57, 0x52, 0x4e, 0x7e, 0x72, 0x76,
|
|
|
|
0x7c, 0x71, 0x66, 0x55, 0xaa, 0x04, 0x93, 0x02, 0xa3, 0x06, 0x73, 0x10, 0x27, 0x58, 0x24, 0x38,
|
2019-07-08 23:32:18 +01:00
|
|
|
0xb3, 0x2a, 0x55, 0x2b, 0x98, 0x8b, 0x1b, 0x49, 0xab, 0x90, 0x30, 0x17, 0xbf, 0xab, 0x9f, 0x73,
|
|
|
|
0x7c, 0xa8, 0x5f, 0x70, 0x80, 0xab, 0xb3, 0xa7, 0x9b, 0xa7, 0xab, 0x8b, 0x00, 0x83, 0x10, 0x0f,
|
|
|
|
0x17, 0x07, 0x48, 0xd0, 0x2f, 0xd4, 0xc7, 0x47, 0x80, 0x51, 0x88, 0x8f, 0x8b, 0x0b, 0xc4, 0x73,
|
|
|
|
0x74, 0x0d, 0x76, 0x77, 0xf6, 0x15, 0x60, 0x12, 0x12, 0xe4, 0xe2, 0x05, 0xf1, 0x83, 0x5d, 0x9d,
|
|
|
|
0x83, 0x5c, 0x43, 0x9c, 0xfc, 0x23, 0x04, 0x98, 0x9d, 0x58, 0xa2, 0x98, 0x0a, 0x92, 0x92, 0xd8,
|
|
|
|
0xc0, 0x1e, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc7, 0x9d, 0x88, 0x06, 0xf4, 0x00, 0x00,
|
|
|
|
0x00,
|
2019-07-01 23:17:30 +01:00
|
|
|
}
|