-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG]TLS1.3下无法正确使用指定的密码套件 #1484
Comments
UTLS has changed ciphersuites of client, so it may be can't specify explicity. |
Even if UTLS is not used, TLS1.3 cannot use the specified cipher suite |
Can you pose the cipher suites of server? |
It is not supported by Go. |
配置
"tlsSettings": {
"rejectUnknownSni": true,
"minVersion": "1.3",
"cipherSuites": "TLS_CHACHA20_POLY1305_SHA256",
"certificates": [
{
"certificateFile": "path",
"keyFile": "path"
}
]
}
TLS1.3抓包
TLS1.2下则正常
"tlsSettings": {
"rejectUnknownSni": true,
"minVersion": "1.2",
"maxVersion": "1.2",
"cipherSuites": "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256",
"certificates": [
{
"certificateFile": "path",
"keyFile": "path"
}
]
}
TLS1.2抓包
The text was updated successfully, but these errors were encountered: