mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
Fix allow any cert mode in wallet rpc when configured over rpc
This commit is contained in:
parent
3544596f9f
commit
9bfa4c20ca
1 changed files with 5 additions and 1 deletions
|
@ -4123,7 +4123,11 @@ namespace tools
|
||||||
std::move(req.ssl_private_key_path), std::move(req.ssl_certificate_path)
|
std::move(req.ssl_private_key_path), std::move(req.ssl_certificate_path)
|
||||||
};
|
};
|
||||||
|
|
||||||
if (ssl_options.support == epee::net_utils::ssl_support_t::e_ssl_support_enabled && !ssl_options.has_strong_verification(boost::string_ref{}))
|
const bool verification_required =
|
||||||
|
ssl_options.verification != epee::net_utils::ssl_verification_t::none &&
|
||||||
|
ssl_options.support == epee::net_utils::ssl_support_t::e_ssl_support_enabled;
|
||||||
|
|
||||||
|
if (verification_required && !ssl_options.has_strong_verification(boost::string_ref{}))
|
||||||
{
|
{
|
||||||
er.code = WALLET_RPC_ERROR_CODE_NO_DAEMON_CONNECTION;
|
er.code = WALLET_RPC_ERROR_CODE_NO_DAEMON_CONNECTION;
|
||||||
er.message = "SSL is enabled but no user certificate or fingerprints were provided";
|
er.message = "SSL is enabled but no user certificate or fingerprints were provided";
|
||||||
|
|
Loading…
Reference in a new issue