File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -809,7 +809,7 @@ void StartRPCThreads()
809
809
if (filesystem::exists (pathPKFile)) rpc_ssl_context->use_private_key_file (pathPKFile.string (), ssl::context::pem);
810
810
else LogPrintf (" ThreadRPCServer ERROR: missing server private key file %s\n " , pathPKFile.string ().c_str ());
811
811
812
- string strCiphers = GetArg (" -rpcsslciphers" , " TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH :!3DES:@STRENGTH" );
812
+ string strCiphers = GetArg (" -rpcsslciphers" , " TLSv1.2 +HIGH:TLSv1+HIGH: !SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH" );
813
813
SSL_CTX_set_cipher_list (rpc_ssl_context->impl (), strCiphers.c_str ());
814
814
}
815
815
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ std::string HelpMessage()
258
258
strUsage += " -rpcssl " + _ (" Use OpenSSL (https) for JSON-RPC connections" ) + " \n " ;
259
259
strUsage += " -rpcsslcertificatechainfile=<file.cert> " + _ (" Server certificate file (default: server.cert)" ) + " \n " ;
260
260
strUsage += " -rpcsslprivatekeyfile=<file.pem> " + _ (" Server private key (default: server.pem)" ) + " \n " ;
261
- strUsage += " -rpcsslciphers=<ciphers> " + _ (" Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH :!3DES:@STRENGTH)" ) + " \n " ;
261
+ strUsage += " -rpcsslciphers=<ciphers> " + _ (" Acceptable ciphers (default: TLSv1.2 +HIGH:TLSv1+HIGH: !SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH)" ) + " \n " ;
262
262
263
263
return strUsage;
264
264
}
You can’t perform that action at this time.
0 commit comments