mirror of
https://git.proxmox.com/git/pve-http-server
synced 2025-06-30 17:25:06 +00:00
Add configurable 'honor_cipher_order'
Needed to fix #2069. Prefering the ciphers set in the server, instead of relying on the offer of the client is considered good practice in TLS1.[012] (see e.g. [0]). [0] https://cipherli.st/ Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
This commit is contained in:
parent
55af714ea8
commit
54c0ead916
@ -1644,8 +1644,13 @@ sub new {
|
||||
$self->{end_cond} = AnyEvent->condvar;
|
||||
|
||||
if ($self->{ssl}) {
|
||||
my $tls_ctx_flags = &Net::SSLeay::OP_NO_COMPRESSION | &Net::SSLeay::OP_SINGLE_ECDH_USE | &Net::SSLeay::OP_SINGLE_DH_USE;
|
||||
if ( delete $self->{ssl}->{honor_cipher_order} ) {
|
||||
$tls_ctx_flags |= &Net::SSLeay::OP_CIPHER_SERVER_PREFERENCE;
|
||||
}
|
||||
|
||||
$self->{tls_ctx} = AnyEvent::TLS->new(%{$self->{ssl}});
|
||||
Net::SSLeay::CTX_set_options($self->{tls_ctx}->{ctx}, &Net::SSLeay::OP_NO_COMPRESSION | &Net::SSLeay::OP_SINGLE_ECDH_USE | &Net::SSLeay::OP_SINGLE_DH_USE);
|
||||
Net::SSLeay::CTX_set_options($self->{tls_ctx}->{ctx}, $tls_ctx_flags);
|
||||
}
|
||||
|
||||
if ($self->{spiceproxy}) {
|
||||
|
Loading…
Reference in New Issue
Block a user