2016-10-02 23:43:58 +02:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package v2ray.core.transport.internet.tls;
|
2016-12-23 00:24:28 +01:00
|
|
|
option csharp_namespace = "V2Ray.Core.Transport.Internet.Tls";
|
2016-10-02 23:43:58 +02:00
|
|
|
option go_package = "tls";
|
|
|
|
option java_package = "com.v2ray.core.transport.internet.tls";
|
2017-02-03 23:15:10 +01:00
|
|
|
option java_multiple_files = true;
|
2016-10-02 23:43:58 +02:00
|
|
|
|
|
|
|
message Certificate {
|
2016-10-18 15:31:39 +02:00
|
|
|
// TLS certificate in x509 format.
|
2016-10-02 23:43:58 +02:00
|
|
|
bytes Certificate = 1;
|
2016-10-18 15:31:39 +02:00
|
|
|
|
|
|
|
// TLS key in x509 format.
|
2016-10-02 23:43:58 +02:00
|
|
|
bytes Key = 2;
|
2018-04-10 12:42:02 +02:00
|
|
|
|
|
|
|
enum Usage {
|
|
|
|
ENCIPHERMENT = 0;
|
|
|
|
AUTHORITY_VERIFY = 1;
|
|
|
|
AUTHORITY_ISSUE = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
Usage usage = 3;
|
2016-10-02 23:43:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
message Config {
|
2016-10-18 15:31:39 +02:00
|
|
|
// Whether or not to allow self-signed certificates.
|
2016-10-02 23:43:58 +02:00
|
|
|
bool allow_insecure = 1;
|
2016-10-18 15:31:39 +02:00
|
|
|
|
2018-05-27 18:52:08 +02:00
|
|
|
// Whether or not to allow insecure cipher suites.
|
|
|
|
bool allow_insecure_ciphers = 5;
|
|
|
|
|
2016-10-18 15:31:39 +02:00
|
|
|
// List of certificates to be served on server.
|
2016-10-02 23:43:58 +02:00
|
|
|
repeated Certificate certificate = 2;
|
2016-12-11 23:58:37 +01:00
|
|
|
|
|
|
|
// Override server name.
|
|
|
|
string server_name = 3;
|
2018-01-02 18:16:36 +01:00
|
|
|
|
|
|
|
// Lists of string as ALPN values.
|
|
|
|
repeated string next_protocol = 4;
|
2018-07-24 15:12:09 +02:00
|
|
|
|
|
|
|
// Whether or not to disable session (ticket) resumption.
|
|
|
|
bool disable_session_resumption = 6;
|
2018-04-10 12:42:02 +02:00
|
|
|
}
|