上一页 1 ··· 287 288 289 290 291 292 293 294 295 ··· 618 下一页

2022年2月23日

摘要: 后台同事给的事.pem和.key文件,项目中要用cer证书,所以要转一下 pem证书转cer证书 命令: 1.openssl pkcs12 -export -out cacert.p12 -in cacert.pem -inkey cacert.key 先转p12 2.openssl pkcs12 阅读全文
posted @ 2022-02-23 05:47 lydstory 阅读(290) 评论(0) 推荐(0)

2022年2月17日

摘要: 简介:FCI(File Compression Interface)和FDI(File Decompression Interface)是由微软提供的用于压缩和解压缩的开发包。最大的好处是在WinNT、Win2000、WinXP下系统都提供了相应的API接口。所以,我们的程序不需要额外的压缩库。本文 阅读全文
posted @ 2022-02-17 07:08 lydstory 阅读(474) 评论(0) 推荐(0)
摘要: 一、概述 目前,存储介质作为企业核心商业机密和敏感信息的载体,实现对它们安全、有效的管理是保证企业信息安全的重要手段。移动存储介质的使用灵 活、方便使它在企业信息化的过程中迅速得到普及,越来越多的敏感信息、秘密数据和档案资料被存贮在移动介质里,大量的秘密文件和资料变为磁性介质,光学介质,存贮在无保护 阅读全文
posted @ 2022-02-17 06:58 lydstory 阅读(456) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/zhehan54/p/4646904.html 阅读全文
posted @ 2022-02-17 06:33 lydstory 阅读(27) 评论(0) 推荐(0)
摘要: 虚拟可信磁盘 虚拟可信磁盘 虚拟可信磁盘 阅读全文
posted @ 2022-02-17 06:21 lydstory 阅读(39) 评论(0) 推荐(0)
摘要: struct sbuffer { struct sbuffer* next; int sz; char* ptr; char data[0]; }; int main() { cout<<sizeof(sbuffer)<<endl; return 0; } 24 阅读全文
posted @ 2022-02-17 05:18 lydstory 阅读(23) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; #include <stdlib.h> #include <stdio.h> #include <stdio.h> #include <memory.h> #include <malloc.h> struct _pag 阅读全文
posted @ 2022-02-17 05:13 lydstory 阅读(58) 评论(0) 推荐(0)
摘要: #include <stdlib.h>#include <stdio.h> struct _page { struct _page* next; char begin[0];}; int main(){ cout << sizeof(_page) << endl; return 0;} 输出8 ch 阅读全文
posted @ 2022-02-17 05:03 lydstory 阅读(28) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; #include <string.h> #include <stdlib.h> #define ARGS_BUF 1024 #define ARGS_MAX 10 struct args { char buf[ARGS 阅读全文
posted @ 2022-02-17 04:19 lydstory 阅读(67) 评论(0) 推荐(0)
摘要: https://ithub.com/lvshaco/shaco_first 阅读全文
posted @ 2022-02-17 03:53 lydstory 阅读(35) 评论(0) 推荐(0)
上一页 1 ··· 287 288 289 290 291 292 293 294 295 ··· 618 下一页

导航