上一页 1 2 3 4 5 6 7 8 9 10 ··· 121 下一页
摘要: 问题 当使用 curl 命令打开 HTTPS 网站,比如: curl -sSL https://www.github.com/ 显示如下错误: curl: (60) SSL certificate problem: unable to get local issuer certificate 根据错 阅读全文
posted @ 2024-01-27 20:07 与f 阅读(3048) 评论(0) 推荐(0)
摘要: curl去访问https的站点报错: curl -v https://www.baidu.com * SSLv3, TLS handshake, Client hello (1): * SSLv3, TLS handshake, Server hello (2): * SSLv3, TLS hand 阅读全文
posted @ 2024-01-27 20:06 与f 阅读(2877) 评论(0) 推荐(0)
摘要: 工具篇 Openssl源码 :github下载 per : 构建器【提取码:0000】 NASM : 汇编器 【提取码:0000】 Visual Studio 2019 成品 懒得编译,可以直接使用我编译好的64位静态库,直接下载 提取码:0000 环境配置 NASM 解压上述下载的压缩包,配置PA 阅读全文
posted @ 2024-01-24 09:38 与f 阅读(73) 评论(0) 推荐(0)
摘要: windows系统下的curl库编译有好几种形式。 方法一:下载了curl库后,解压文件,projects\Windows\文件夹下有各种vs项目的各种版本,打开生成DLL Release或DLL Release -DLL Windows SSPI即可. (DLL Release - DLL Ope 阅读全文
posted @ 2024-01-23 22:10 与f 阅读(2579) 评论(0) 推荐(0)
摘要: 转 : https://www.cnblogs.com/gd-luojialin/p/7581102.html https://blog.csdn.net/m0_67316550/article/details/124977756 阅读全文
posted @ 2024-01-22 16:33 与f 阅读(26) 评论(0) 推荐(0)
摘要: 下面是我在VS编译器上写的一个简单的dll文件,关于dll文件如何编写,我就不再赘述了。 .h文件 #ifndef _MYDLL_H #define _MYDLL_H #ifdef MYDLL_EXPORTS #define MYDLL_API __declspec(dllexport) #else 阅读全文
posted @ 2024-01-20 21:26 与f 阅读(495) 评论(0) 推荐(0)
摘要: c++11引入了Lambda表达式,使得开发人员可以更方便的创建匿名函数。Lambda表达式是c++语言的一个重要特性,它可以作为函数对象使用,可以用来替代一些繁琐的函数声明和定义。 语法: [capture list]是捕获列表,必填。 (parameter list)是参数列表,选填。 spec 阅读全文
posted @ 2024-01-09 14:58 与f 阅读(25) 评论(0) 推荐(0)
摘要: OpenSSL之六:OpenSSL源码编译安装 转 : https://blog.csdn.net/wzfgd/article/details/109745506 阅读全文
posted @ 2023-12-29 16:11 与f 阅读(66) 评论(0) 推荐(0)
摘要: 1.下载jsoncpp源码 2.首先建议jsoncpp源码编译成动态库 https://www.bilibili.com/video/BV1pb4y1W7ZZ https://www.bilibili.com/video/BV1Ra4y1e7gL (1) 用Cmake工具生成项目 (2)用Visua 阅读全文
posted @ 2023-12-05 16:11 与f 阅读(292) 评论(0) 推荐(0)
摘要: 文件操作: c++对文件的操作需要包含头文件<fstream> 文件的类型,主要分为 文本文件(ASCII形式存在电脑) 和 二进制文件 。 文件操作方式:1.写文件(ofstream) 2.读文件(ifstream) 3.读写文件(fstream) 写文件步骤: 1.包含头文件 》 2.创建流对象 阅读全文
posted @ 2023-11-21 17:01 与f 阅读(88) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 121 下一页