/* */为了方便调试Qt程序,也方便传输文件,需要用sftp功能,开发板的dropbear没有此功能所以需要自己编译sftp-server程序,复制到开发板中运行。 sftp-server是openssh的一部分,所以要编译openssh。openssh依赖zlib和OpenSSL,所以也要编译z ...
分类:
其他好文 时间:
2021-06-19 19:29:49
阅读次数:
0
CentOS 安装 git 教程 移除自带 git yum remove git 安装依赖 yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc yum install gcc perl- ...
分类:
其他好文 时间:
2021-06-13 10:37:37
阅读次数:
0
if (m_url.indexOf("wss://") >= 0) { QSslConfiguration sslConfiguration = m_pWebSocket->sslConfiguration(); sslConfiguration.setPeerVerifyMode(QSslSock ...
分类:
Web程序 时间:
2021-06-11 17:35:06
阅读次数:
0
一:名词介绍 二:实现功能 OpenSSL是一个开放源代码的软件库包,用于安全通信,分成三个主要的功能部分:SSL协议库、应用程序以及密码算法库. openssh基于ssh网络通信协议的实现,其中安全部分通过openssl加密. https网络通信协议,Apache使用openssl加密HTTPS. ...
分类:
Web程序 时间:
2021-06-11 17:32:39
阅读次数:
0
1.下载tar包并安装依赖、解压 cd /opt && wget http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.6p1.tar.gz yum install -y gcc zlib-devel openssl-devel ...
分类:
其他好文 时间:
2021-06-10 18:51:19
阅读次数:
0
git clone 项目链接产生如下提示信息: fatal: unable to access 'https://github.com/liuruoze/EasyPR.git/': OpenSSL SSL_connect: Connection was reset in connection to ...
分类:
其他好文 时间:
2021-06-09 15:22:39
阅读次数:
0
一、打开文件 open(path,flag,encoding,[errors]) path:打开路径 flag:打开方式:【读r(read),写w(write),追加a(append)】 encoding:编码方式 errors:错误处理 二、详解flag r:只读。该文件必须已存在。 r+:可读可 ...
分类:
编程语言 时间:
2021-06-07 21:09:28
阅读次数:
0
cURL is one of most powerful tools for testing HTTP traffic. We typically use cURL to interact with HTTP APIs or test websites. Although cURL supports ...
分类:
Web程序 时间:
2021-06-07 20:18:30
阅读次数:
0
Linux 平台上安装 Git 的工作需要调用 curl,zlib,openssl,expat,libiconv 等库的代码,所以需要先安装这些依赖工具。 在有 yum 的系统上(比如 Fedora)或者有 apt-get 的系统上(比如 Debian 体系),可以用下面的命令安装: 各 Linux ...
分类:
其他好文 时间:
2021-06-03 18:28:05
阅读次数:
0
作者:Grey 原文地址:Linux下安装Nginx 版本 Nginx:1.20.1 操作系统:CentOS 7 安装必要工具和依赖 yum -y install wget gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-dev ...
分类:
系统相关 时间:
2021-06-03 18:15:31
阅读次数:
0