上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页
摘要: 【引言】 ASN.1全称为Abstract Syntax NotationOne,是一种描述数字对象的方法和标准。openssl的编码方法就是基于该标准的,目前,很多其他软件的编码方法也是基于该标准。对于直接使用openssl的API或者应用程序来说,可能对ASN.1的了解并不需要很清楚,但是为了使 阅读全文
posted @ 2019-08-13 16:26 日月王 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: Zakir Durumeric | October 13, 2013 While OpenSSL has become one of the defacto libraries for performing SSL and TLS operations, the library is surpris 阅读全文
posted @ 2019-08-13 16:17 日月王 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 一、生成证书 openSSL生成RSA证书 1 生成自签CA 生成CA密钥 genrsa -aes256 -passout pass:123456 -out ca_rsa_private.pem 2048 1 自签名证书 req -new -key server_rsa_private.pem -p 阅读全文
posted @ 2019-08-13 16:05 日月王 阅读(3935) 评论(0) 推荐(0) 编辑
摘要: void GetPubKey(const char* FilePath, char* PubKey) { unsigned char Cert[4099]; unsigned char *pTmp = NULL; FILE *fp = NULL; fp=fopen(FilePath,“rb”); i 阅读全文
posted @ 2019-08-13 15:58 日月王 阅读(1606) 评论(0) 推荐(0) 编辑
摘要: 原地址:https://blog.csdn.net/anddy926/article/details/8940377 由于项目需要,我计划利用openssl开发一个基本的CA,实现证书的发放等功能。在项目模型中公私钥对是用户自己产生的,并且以16进制数的形似提交给CA。我们知道,通常利用openss 阅读全文
posted @ 2019-08-13 15:38 日月王 阅读(1837) 评论(0) 推荐(0) 编辑
摘要: ; Generated by AutoGUI 2.6.0 #SingleInstance Force #NoEnv SetWorkingDir %A_ScriptDir% SetBatchLines -1 #Include %A_ScriptDir%\AutoXYWH.ahk Gui +Resize 阅读全文
posted @ 2019-08-12 13:54 日月王 阅读(388) 评论(1) 推荐(0) 编辑
摘要: orig url: https://accu.org/index.php/journals/255 roperties are a feature of a number of programming languages - Visual Basic and C# are two of them. 阅读全文
posted @ 2019-08-08 23:34 日月王 阅读(186) 评论(0) 推荐(0) 编辑
摘要: void GetWorkingFolder(std::string& folder){ folder.resize(MAX_PATH*2 + 1, '\0'); //留长一点,防止后面再连接一个Cloudwalk时出错 //获取当前程序目录,如果是C盘,则获取APPDATA目录,然后在末尾添加目录后 阅读全文
posted @ 2019-08-07 13:48 日月王 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 删除历史日志的一个API bool DeleteOldFiles(const char* strFolder, const char* strPrefix, bool is_recursion, UINT32 ulMinDateTime, UINT32 ulMaxDateTime) { HANDLE 阅读全文
posted @ 2019-08-02 17:46 日月王 阅读(175) 评论(0) 推荐(0) 编辑
摘要: /******************************************************** * @file : Mutex.h * @desc : 同步对象 * @author : * @date : 2019-7-30 * @version : 1.0.0 ******** 阅读全文
posted @ 2019-08-01 11:14 日月王 阅读(200) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页