config.pb.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.31.0
  4. // protoc v4.23.1
  5. // source: transport/internet/tls/config.proto
  6. package tls
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type Certificate_Usage int32
  20. const (
  21. Certificate_ENCIPHERMENT Certificate_Usage = 0
  22. Certificate_AUTHORITY_VERIFY Certificate_Usage = 1
  23. Certificate_AUTHORITY_ISSUE Certificate_Usage = 2
  24. )
  25. // Enum value maps for Certificate_Usage.
  26. var (
  27. Certificate_Usage_name = map[int32]string{
  28. 0: "ENCIPHERMENT",
  29. 1: "AUTHORITY_VERIFY",
  30. 2: "AUTHORITY_ISSUE",
  31. }
  32. Certificate_Usage_value = map[string]int32{
  33. "ENCIPHERMENT": 0,
  34. "AUTHORITY_VERIFY": 1,
  35. "AUTHORITY_ISSUE": 2,
  36. }
  37. )
  38. func (x Certificate_Usage) Enum() *Certificate_Usage {
  39. p := new(Certificate_Usage)
  40. *p = x
  41. return p
  42. }
  43. func (x Certificate_Usage) String() string {
  44. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  45. }
  46. func (Certificate_Usage) Descriptor() protoreflect.EnumDescriptor {
  47. return file_transport_internet_tls_config_proto_enumTypes[0].Descriptor()
  48. }
  49. func (Certificate_Usage) Type() protoreflect.EnumType {
  50. return &file_transport_internet_tls_config_proto_enumTypes[0]
  51. }
  52. func (x Certificate_Usage) Number() protoreflect.EnumNumber {
  53. return protoreflect.EnumNumber(x)
  54. }
  55. // Deprecated: Use Certificate_Usage.Descriptor instead.
  56. func (Certificate_Usage) EnumDescriptor() ([]byte, []int) {
  57. return file_transport_internet_tls_config_proto_rawDescGZIP(), []int{0, 0}
  58. }
  59. type Certificate struct {
  60. state protoimpl.MessageState
  61. sizeCache protoimpl.SizeCache
  62. unknownFields protoimpl.UnknownFields
  63. // TLS certificate in x509 format.
  64. Certificate []byte `protobuf:"bytes,1,opt,name=certificate,proto3" json:"certificate,omitempty"`
  65. // TLS key in x509 format.
  66. Key []byte `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
  67. Usage Certificate_Usage `protobuf:"varint,3,opt,name=usage,proto3,enum=xray.transport.internet.tls.Certificate_Usage" json:"usage,omitempty"`
  68. OcspStapling uint64 `protobuf:"varint,4,opt,name=ocsp_stapling,json=ocspStapling,proto3" json:"ocsp_stapling,omitempty"`
  69. // TLS certificate path
  70. CertificatePath string `protobuf:"bytes,5,opt,name=certificate_path,json=certificatePath,proto3" json:"certificate_path,omitempty"`
  71. // TLS Key path
  72. KeyPath string `protobuf:"bytes,6,opt,name=key_path,json=keyPath,proto3" json:"key_path,omitempty"`
  73. // If true, one-Time Loading
  74. OneTimeLoading bool `protobuf:"varint,7,opt,name=One_time_loading,json=OneTimeLoading,proto3" json:"One_time_loading,omitempty"`
  75. }
  76. func (x *Certificate) Reset() {
  77. *x = Certificate{}
  78. if protoimpl.UnsafeEnabled {
  79. mi := &file_transport_internet_tls_config_proto_msgTypes[0]
  80. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  81. ms.StoreMessageInfo(mi)
  82. }
  83. }
  84. func (x *Certificate) String() string {
  85. return protoimpl.X.MessageStringOf(x)
  86. }
  87. func (*Certificate) ProtoMessage() {}
  88. func (x *Certificate) ProtoReflect() protoreflect.Message {
  89. mi := &file_transport_internet_tls_config_proto_msgTypes[0]
  90. if protoimpl.UnsafeEnabled && x != nil {
  91. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  92. if ms.LoadMessageInfo() == nil {
  93. ms.StoreMessageInfo(mi)
  94. }
  95. return ms
  96. }
  97. return mi.MessageOf(x)
  98. }
  99. // Deprecated: Use Certificate.ProtoReflect.Descriptor instead.
  100. func (*Certificate) Descriptor() ([]byte, []int) {
  101. return file_transport_internet_tls_config_proto_rawDescGZIP(), []int{0}
  102. }
  103. func (x *Certificate) GetCertificate() []byte {
  104. if x != nil {
  105. return x.Certificate
  106. }
  107. return nil
  108. }
  109. func (x *Certificate) GetKey() []byte {
  110. if x != nil {
  111. return x.Key
  112. }
  113. return nil
  114. }
  115. func (x *Certificate) GetUsage() Certificate_Usage {
  116. if x != nil {
  117. return x.Usage
  118. }
  119. return Certificate_ENCIPHERMENT
  120. }
  121. func (x *Certificate) GetOcspStapling() uint64 {
  122. if x != nil {
  123. return x.OcspStapling
  124. }
  125. return 0
  126. }
  127. func (x *Certificate) GetCertificatePath() string {
  128. if x != nil {
  129. return x.CertificatePath
  130. }
  131. return ""
  132. }
  133. func (x *Certificate) GetKeyPath() string {
  134. if x != nil {
  135. return x.KeyPath
  136. }
  137. return ""
  138. }
  139. func (x *Certificate) GetOneTimeLoading() bool {
  140. if x != nil {
  141. return x.OneTimeLoading
  142. }
  143. return false
  144. }
  145. type Config struct {
  146. state protoimpl.MessageState
  147. sizeCache protoimpl.SizeCache
  148. unknownFields protoimpl.UnknownFields
  149. // Whether or not to allow self-signed certificates.
  150. AllowInsecure bool `protobuf:"varint,1,opt,name=allow_insecure,json=allowInsecure,proto3" json:"allow_insecure,omitempty"`
  151. // List of certificates to be served on server.
  152. Certificate []*Certificate `protobuf:"bytes,2,rep,name=certificate,proto3" json:"certificate,omitempty"`
  153. // Override server name.
  154. ServerName string `protobuf:"bytes,3,opt,name=server_name,json=serverName,proto3" json:"server_name,omitempty"`
  155. // Lists of string as ALPN values.
  156. NextProtocol []string `protobuf:"bytes,4,rep,name=next_protocol,json=nextProtocol,proto3" json:"next_protocol,omitempty"`
  157. // Whether or not to enable session (ticket) resumption.
  158. EnableSessionResumption bool `protobuf:"varint,5,opt,name=enable_session_resumption,json=enableSessionResumption,proto3" json:"enable_session_resumption,omitempty"`
  159. // If true, root certificates on the system will not be loaded for
  160. // verification.
  161. DisableSystemRoot bool `protobuf:"varint,6,opt,name=disable_system_root,json=disableSystemRoot,proto3" json:"disable_system_root,omitempty"`
  162. // The minimum TLS version.
  163. MinVersion string `protobuf:"bytes,7,opt,name=min_version,json=minVersion,proto3" json:"min_version,omitempty"`
  164. // The maximum TLS version.
  165. MaxVersion string `protobuf:"bytes,8,opt,name=max_version,json=maxVersion,proto3" json:"max_version,omitempty"`
  166. // Specify cipher suites, except for TLS 1.3.
  167. CipherSuites string `protobuf:"bytes,9,opt,name=cipher_suites,json=cipherSuites,proto3" json:"cipher_suites,omitempty"`
  168. // Whether the server selects its most preferred ciphersuite.
  169. PreferServerCipherSuites bool `protobuf:"varint,10,opt,name=prefer_server_cipher_suites,json=preferServerCipherSuites,proto3" json:"prefer_server_cipher_suites,omitempty"`
  170. // TLS Client Hello fingerprint (uTLS).
  171. Fingerprint string `protobuf:"bytes,11,opt,name=fingerprint,proto3" json:"fingerprint,omitempty"`
  172. RejectUnknownSni bool `protobuf:"varint,12,opt,name=reject_unknown_sni,json=rejectUnknownSni,proto3" json:"reject_unknown_sni,omitempty"`
  173. // @Document A pinned certificate chain sha256 hash.
  174. // @Document If the server's hash does not match this value, the connection will be aborted.
  175. // @Document This value replace allow_insecure.
  176. // @Critical
  177. PinnedPeerCertificateChainSha256 [][]byte `protobuf:"bytes,13,rep,name=pinned_peer_certificate_chain_sha256,json=pinnedPeerCertificateChainSha256,proto3" json:"pinned_peer_certificate_chain_sha256,omitempty"`
  178. // @Document A pinned certificate public key sha256 hash.
  179. // @Document If the server's public key hash does not match this value, the connection will be aborted.
  180. // @Document This value replace allow_insecure.
  181. // @Critical
  182. PinnedPeerCertificatePublicKeySha256 [][]byte `protobuf:"bytes,14,rep,name=pinned_peer_certificate_public_key_sha256,json=pinnedPeerCertificatePublicKeySha256,proto3" json:"pinned_peer_certificate_public_key_sha256,omitempty"`
  183. }
  184. func (x *Config) Reset() {
  185. *x = Config{}
  186. if protoimpl.UnsafeEnabled {
  187. mi := &file_transport_internet_tls_config_proto_msgTypes[1]
  188. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  189. ms.StoreMessageInfo(mi)
  190. }
  191. }
  192. func (x *Config) String() string {
  193. return protoimpl.X.MessageStringOf(x)
  194. }
  195. func (*Config) ProtoMessage() {}
  196. func (x *Config) ProtoReflect() protoreflect.Message {
  197. mi := &file_transport_internet_tls_config_proto_msgTypes[1]
  198. if protoimpl.UnsafeEnabled && x != nil {
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. if ms.LoadMessageInfo() == nil {
  201. ms.StoreMessageInfo(mi)
  202. }
  203. return ms
  204. }
  205. return mi.MessageOf(x)
  206. }
  207. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  208. func (*Config) Descriptor() ([]byte, []int) {
  209. return file_transport_internet_tls_config_proto_rawDescGZIP(), []int{1}
  210. }
  211. func (x *Config) GetAllowInsecure() bool {
  212. if x != nil {
  213. return x.AllowInsecure
  214. }
  215. return false
  216. }
  217. func (x *Config) GetCertificate() []*Certificate {
  218. if x != nil {
  219. return x.Certificate
  220. }
  221. return nil
  222. }
  223. func (x *Config) GetServerName() string {
  224. if x != nil {
  225. return x.ServerName
  226. }
  227. return ""
  228. }
  229. func (x *Config) GetNextProtocol() []string {
  230. if x != nil {
  231. return x.NextProtocol
  232. }
  233. return nil
  234. }
  235. func (x *Config) GetEnableSessionResumption() bool {
  236. if x != nil {
  237. return x.EnableSessionResumption
  238. }
  239. return false
  240. }
  241. func (x *Config) GetDisableSystemRoot() bool {
  242. if x != nil {
  243. return x.DisableSystemRoot
  244. }
  245. return false
  246. }
  247. func (x *Config) GetMinVersion() string {
  248. if x != nil {
  249. return x.MinVersion
  250. }
  251. return ""
  252. }
  253. func (x *Config) GetMaxVersion() string {
  254. if x != nil {
  255. return x.MaxVersion
  256. }
  257. return ""
  258. }
  259. func (x *Config) GetCipherSuites() string {
  260. if x != nil {
  261. return x.CipherSuites
  262. }
  263. return ""
  264. }
  265. func (x *Config) GetPreferServerCipherSuites() bool {
  266. if x != nil {
  267. return x.PreferServerCipherSuites
  268. }
  269. return false
  270. }
  271. func (x *Config) GetFingerprint() string {
  272. if x != nil {
  273. return x.Fingerprint
  274. }
  275. return ""
  276. }
  277. func (x *Config) GetRejectUnknownSni() bool {
  278. if x != nil {
  279. return x.RejectUnknownSni
  280. }
  281. return false
  282. }
  283. func (x *Config) GetPinnedPeerCertificateChainSha256() [][]byte {
  284. if x != nil {
  285. return x.PinnedPeerCertificateChainSha256
  286. }
  287. return nil
  288. }
  289. func (x *Config) GetPinnedPeerCertificatePublicKeySha256() [][]byte {
  290. if x != nil {
  291. return x.PinnedPeerCertificatePublicKeySha256
  292. }
  293. return nil
  294. }
  295. var File_transport_internet_tls_config_proto protoreflect.FileDescriptor
  296. var file_transport_internet_tls_config_proto_rawDesc = []byte{
  297. 0x0a, 0x23, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x69, 0x6e, 0x74, 0x65,
  298. 0x72, 0x6e, 0x65, 0x74, 0x2f, 0x74, 0x6c, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
  299. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1b, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e,
  300. 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x74,
  301. 0x6c, 0x73, 0x22, 0xe2, 0x02, 0x0a, 0x0b, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  302. 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
  303. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
  304. 0x63, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28,
  305. 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x18,
  306. 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61,
  307. 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e,
  308. 0x74, 0x6c, 0x73, 0x2e, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e,
  309. 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0d,
  310. 0x6f, 0x63, 0x73, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x70, 0x6c, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20,
  311. 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6f, 0x63, 0x73, 0x70, 0x53, 0x74, 0x61, 0x70, 0x6c, 0x69, 0x6e,
  312. 0x67, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65,
  313. 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x65, 0x72,
  314. 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x19, 0x0a, 0x08,
  315. 0x6b, 0x65, 0x79, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  316. 0x6b, 0x65, 0x79, 0x50, 0x61, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x4f, 0x6e, 0x65, 0x5f, 0x74,
  317. 0x69, 0x6d, 0x65, 0x5f, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28,
  318. 0x08, 0x52, 0x0e, 0x4f, 0x6e, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e,
  319. 0x67, 0x22, 0x44, 0x0a, 0x05, 0x55, 0x73, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x45, 0x4e,
  320. 0x43, 0x49, 0x50, 0x48, 0x45, 0x52, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10,
  321. 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x56, 0x45, 0x52, 0x49, 0x46, 0x59,
  322. 0x10, 0x01, 0x12, 0x13, 0x0a, 0x0f, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x5f,
  323. 0x49, 0x53, 0x53, 0x55, 0x45, 0x10, 0x02, 0x22, 0xcc, 0x05, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66,
  324. 0x69, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x73, 0x65,
  325. 0x63, 0x75, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x61, 0x6c, 0x6c, 0x6f,
  326. 0x77, 0x49, 0x6e, 0x73, 0x65, 0x63, 0x75, 0x72, 0x65, 0x12, 0x4a, 0x0a, 0x0b, 0x63, 0x65, 0x72,
  327. 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28,
  328. 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e,
  329. 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x74, 0x6c, 0x73, 0x2e, 0x43, 0x65, 0x72,
  330. 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66,
  331. 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  332. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x72, 0x76,
  333. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70,
  334. 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x6e,
  335. 0x65, 0x78, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x12, 0x3a, 0x0a, 0x19, 0x65,
  336. 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65,
  337. 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x17,
  338. 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
  339. 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x64, 0x69, 0x73, 0x61, 0x62,
  340. 0x6c, 0x65, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x72, 0x6f, 0x6f, 0x74, 0x18, 0x06,
  341. 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x79, 0x73,
  342. 0x74, 0x65, 0x6d, 0x52, 0x6f, 0x6f, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, 0x69, 0x6e, 0x5f, 0x76,
  343. 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d, 0x69,
  344. 0x6e, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, 0x61, 0x78, 0x5f,
  345. 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d,
  346. 0x61, 0x78, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x69, 0x70,
  347. 0x68, 0x65, 0x72, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x65, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  348. 0x52, 0x0c, 0x63, 0x69, 0x70, 0x68, 0x65, 0x72, 0x53, 0x75, 0x69, 0x74, 0x65, 0x73, 0x12, 0x3d,
  349. 0x0a, 0x1b, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f,
  350. 0x63, 0x69, 0x70, 0x68, 0x65, 0x72, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x65, 0x73, 0x18, 0x0a, 0x20,
  351. 0x01, 0x28, 0x08, 0x52, 0x18, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x65,
  352. 0x72, 0x43, 0x69, 0x70, 0x68, 0x65, 0x72, 0x53, 0x75, 0x69, 0x74, 0x65, 0x73, 0x12, 0x20, 0x0a,
  353. 0x0b, 0x66, 0x69, 0x6e, 0x67, 0x65, 0x72, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x18, 0x0b, 0x20, 0x01,
  354. 0x28, 0x09, 0x52, 0x0b, 0x66, 0x69, 0x6e, 0x67, 0x65, 0x72, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x12,
  355. 0x2c, 0x0a, 0x12, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77,
  356. 0x6e, 0x5f, 0x73, 0x6e, 0x69, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x72, 0x65, 0x6a,
  357. 0x65, 0x63, 0x74, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x53, 0x6e, 0x69, 0x12, 0x4e, 0x0a,
  358. 0x24, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x70, 0x65, 0x65, 0x72, 0x5f, 0x63, 0x65, 0x72,
  359. 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x73,
  360. 0x68, 0x61, 0x32, 0x35, 0x36, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x20, 0x70, 0x69, 0x6e,
  361. 0x6e, 0x65, 0x64, 0x50, 0x65, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61,
  362. 0x74, 0x65, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x53, 0x68, 0x61, 0x32, 0x35, 0x36, 0x12, 0x57, 0x0a,
  363. 0x29, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x70, 0x65, 0x65, 0x72, 0x5f, 0x63, 0x65, 0x72,
  364. 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f,
  365. 0x6b, 0x65, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x32, 0x35, 0x36, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x0c,
  366. 0x52, 0x24, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x65, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74,
  367. 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79,
  368. 0x53, 0x68, 0x61, 0x32, 0x35, 0x36, 0x42, 0x73, 0x0a, 0x1f, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72,
  369. 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74,
  370. 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x74, 0x6c, 0x73, 0x50, 0x01, 0x5a, 0x30, 0x67, 0x69, 0x74,
  371. 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72, 0x61,
  372. 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74,
  373. 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2f, 0x74, 0x6c, 0x73, 0xaa, 0x02, 0x1b,
  374. 0x58, 0x72, 0x61, 0x79, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x49,
  375. 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x54, 0x6c, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
  376. 0x74, 0x6f, 0x33,
  377. }
  378. var (
  379. file_transport_internet_tls_config_proto_rawDescOnce sync.Once
  380. file_transport_internet_tls_config_proto_rawDescData = file_transport_internet_tls_config_proto_rawDesc
  381. )
  382. func file_transport_internet_tls_config_proto_rawDescGZIP() []byte {
  383. file_transport_internet_tls_config_proto_rawDescOnce.Do(func() {
  384. file_transport_internet_tls_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_transport_internet_tls_config_proto_rawDescData)
  385. })
  386. return file_transport_internet_tls_config_proto_rawDescData
  387. }
  388. var file_transport_internet_tls_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  389. var file_transport_internet_tls_config_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
  390. var file_transport_internet_tls_config_proto_goTypes = []interface{}{
  391. (Certificate_Usage)(0), // 0: xray.transport.internet.tls.Certificate.Usage
  392. (*Certificate)(nil), // 1: xray.transport.internet.tls.Certificate
  393. (*Config)(nil), // 2: xray.transport.internet.tls.Config
  394. }
  395. var file_transport_internet_tls_config_proto_depIdxs = []int32{
  396. 0, // 0: xray.transport.internet.tls.Certificate.usage:type_name -> xray.transport.internet.tls.Certificate.Usage
  397. 1, // 1: xray.transport.internet.tls.Config.certificate:type_name -> xray.transport.internet.tls.Certificate
  398. 2, // [2:2] is the sub-list for method output_type
  399. 2, // [2:2] is the sub-list for method input_type
  400. 2, // [2:2] is the sub-list for extension type_name
  401. 2, // [2:2] is the sub-list for extension extendee
  402. 0, // [0:2] is the sub-list for field type_name
  403. }
  404. func init() { file_transport_internet_tls_config_proto_init() }
  405. func file_transport_internet_tls_config_proto_init() {
  406. if File_transport_internet_tls_config_proto != nil {
  407. return
  408. }
  409. if !protoimpl.UnsafeEnabled {
  410. file_transport_internet_tls_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  411. switch v := v.(*Certificate); i {
  412. case 0:
  413. return &v.state
  414. case 1:
  415. return &v.sizeCache
  416. case 2:
  417. return &v.unknownFields
  418. default:
  419. return nil
  420. }
  421. }
  422. file_transport_internet_tls_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  423. switch v := v.(*Config); i {
  424. case 0:
  425. return &v.state
  426. case 1:
  427. return &v.sizeCache
  428. case 2:
  429. return &v.unknownFields
  430. default:
  431. return nil
  432. }
  433. }
  434. }
  435. type x struct{}
  436. out := protoimpl.TypeBuilder{
  437. File: protoimpl.DescBuilder{
  438. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  439. RawDescriptor: file_transport_internet_tls_config_proto_rawDesc,
  440. NumEnums: 1,
  441. NumMessages: 2,
  442. NumExtensions: 0,
  443. NumServices: 0,
  444. },
  445. GoTypes: file_transport_internet_tls_config_proto_goTypes,
  446. DependencyIndexes: file_transport_internet_tls_config_proto_depIdxs,
  447. EnumInfos: file_transport_internet_tls_config_proto_enumTypes,
  448. MessageInfos: file_transport_internet_tls_config_proto_msgTypes,
  449. }.Build()
  450. File_transport_internet_tls_config_proto = out.File
  451. file_transport_internet_tls_config_proto_rawDesc = nil
  452. file_transport_internet_tls_config_proto_goTypes = nil
  453. file_transport_internet_tls_config_proto_depIdxs = nil
  454. }