mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 16:53:08 -07:00
Allow only rc4 for encryption, no plaintext
This commit is contained in:
parent
c39da36cca
commit
3b63d34f34
1 changed files with 2 additions and 1 deletions
|
@ -1180,7 +1180,8 @@ void GUI::configureSession(bool deleteOptions){
|
|||
setInfoBar(tr("UPnP support [ON]"), "blue");
|
||||
// Encryption settings
|
||||
int encryptionState = options->getEncryptionSetting();
|
||||
encryptionSettings.allowed_enc_level = pe_settings::both;
|
||||
// The most secure, rc4 only so that all streams and encrypted
|
||||
encryptionSettings.allowed_enc_level = pe_settings::rc4;
|
||||
encryptionSettings.prefer_rc4 = true;
|
||||
switch(encryptionState){
|
||||
case 0: //Enabled
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue