2016-10-02 17:43:58 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package v2ray.core.transport.internet.tls;
|
2016-12-22 18:24:28 -05:00
|
|
|
option csharp_namespace = "V2Ray.Core.Transport.Internet.Tls";
|
2021-02-16 15:31:50 -05:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v4/transport/internet/tls";
|
2016-10-02 17:43:58 -04:00
|
|
|
option java_package = "com.v2ray.core.transport.internet.tls";
|
2017-02-03 17:15:10 -05:00
|
|
|
option java_multiple_files = true;
|
2016-10-02 17:43:58 -04:00
|
|
|
|
|
|
|
message Certificate {
|
2016-10-18 09:31:39 -04:00
|
|
|
// TLS certificate in x509 format.
|
2016-10-02 17:43:58 -04:00
|
|
|
bytes Certificate = 1;
|
2016-10-18 09:31:39 -04:00
|
|
|
|
|
|
|
// TLS key in x509 format.
|
2016-10-02 17:43:58 -04:00
|
|
|
bytes Key = 2;
|
2018-04-10 06:42:02 -04:00
|
|
|
|
|
|
|
enum Usage {
|
|
|
|
ENCIPHERMENT = 0;
|
|
|
|
AUTHORITY_VERIFY = 1;
|
|
|
|
AUTHORITY_ISSUE = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
Usage usage = 3;
|
2016-10-02 17:43:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
message Config {
|
2016-10-18 09:31:39 -04:00
|
|
|
// Whether or not to allow self-signed certificates.
|
2016-10-02 17:43:58 -04:00
|
|
|
bool allow_insecure = 1;
|
2016-10-18 09:31:39 -04:00
|
|
|
|
|
|
|
// List of certificates to be served on server.
|
2016-10-02 17:43:58 -04:00
|
|
|
repeated Certificate certificate = 2;
|
2016-12-11 17:58:37 -05:00
|
|
|
|
|
|
|
// Override server name.
|
|
|
|
string server_name = 3;
|
2018-01-02 12:16:36 -05:00
|
|
|
|
|
|
|
// Lists of string as ALPN values.
|
|
|
|
repeated string next_protocol = 4;
|
2018-07-24 09:12:09 -04:00
|
|
|
|
2021-01-01 04:01:14 -05:00
|
|
|
// Whether or not to enable session (ticket) resumption.
|
|
|
|
bool enable_session_resumption = 5;
|
2019-02-26 15:58:54 -05:00
|
|
|
|
2020-10-04 20:36:40 -04:00
|
|
|
// If true, root certificates on the system will not be loaded for
|
|
|
|
// verification.
|
2021-01-01 04:01:14 -05:00
|
|
|
bool disable_system_root = 6;
|
2021-04-15 13:16:19 -04:00
|
|
|
|
|
|
|
/* @Document A pinned certificate chain sha256 hash.
|
|
|
|
@Document If the server's hash does not match this value, the connection will be aborted.
|
|
|
|
@Document This value replace allow_insecure.
|
|
|
|
@Critical
|
|
|
|
*/
|
|
|
|
repeated bytes pinned_peer_certificate_chain_sha256 = 7;
|
2018-04-10 06:42:02 -04:00
|
|
|
}
|