摘要:
https://www.tjrzzl.com/bbs/forum.php?mod=viewthread&tid=1929 阅读全文
摘要:
本文转载自https://www.cnblogs.com/btian/p/6130560.html 在使用Qt的网络组件连接某些服务器时, 会提示“qt.network.ssl: QSslSocket: cannot resolve SSLv2_client_method”的错误, 导致连接失败。 阅读全文
摘要:
#include <QDebug> #include <QSslSocket> qDebug()<<QSslSocket::supportsSsl(); 阅读全文
摘要:
#include <QDebug> #include <QSslSocket> qDebug()<<QSslSocket::sslLibraryBuildVersionString(); 阅读全文
摘要:
在某些场景下我们的https使用的是自签署的ssl证书,qt默认会验证ssl的合法性,导致当使用XMLHttpRequest请求API时不能正常使用,关闭ssl验证后即可正常使用。 在项目的main.cpp中添加一下代码: 头部 #include<QSslConfiguration> main函数中 阅读全文
摘要:
首先做以下准备工作 1、找一个位置创建一个临时使用的文件夹,比如叫demossl。 2、首找到openssl配置文件openssl.cnf,运行openssl version -a命令 openssl.cnf文件就位于OPENSSLDIR对应的目录下,拷贝一份openssl.cnf到第一步中创建的d 阅读全文
摘要:
进入命令行输入openssl version 可查看版本信息,如下图: 输入openssl version -a命令可查看更详细的信息 配置文件就位于OPENSSLDIR目录下。 阅读全文
摘要:
MSDN,我告诉你 https://msdn.itellyou.cn/ 阅读全文
摘要:
操作步骤 1、选择菜单 File -> Preferences -> Settings 2、在搜索框中输入word separators,在搜索结果的符号中去除$符号即可,如下图: 阅读全文
摘要:
第一步、通过终端进入项目目录下第二步、运行命令svn pg svn:ignore -R 阅读全文