上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页
摘要: https://blog.csdn.net/weixin_42710433/article/details/104945201 亲测可行 阅读全文
posted @ 2021-03-13 12:30 然终酒肆 阅读(191) 评论(0) 推荐(0) 编辑
摘要: PKI : Public Key Infrastructure 中文名: 公钥基础设施 一个简单的PKI系统包括证书机构CA、注册机构RA和相应的PKI存储库。 CA用于签发并管理证书;RA可作为CA的一部分,也可以独立,其功能包括个人身份审核、CRL管理、密钥产生和密钥对备份等;PKI存储库包括L 阅读全文
posted @ 2021-02-17 23:40 然终酒肆 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 了解这些就够了: IKE属于一种混合型协议,由Internet安全关联和密钥管理协议(ISAKMP)和两种密钥交换协议OAKLEY与SKEME组成。 阅读全文
posted @ 2021-02-17 23:38 然终酒肆 阅读(346) 评论(0) 推荐(0) 编辑
摘要: Kerberos是一种计算机网络授权协议,用来在非安全网络中,对个人通信以安全的手段进行身份认证。这个词又指麻省理工学院为这个协议开发的一套计算机软件。Kerberos 是一种网络认证协议,其设计目标是通过密钥系统为客户机 / 服务器应用程序提供强大的认证服务。该认证过程的实现不依赖于主机操作系统的 阅读全文
posted @ 2021-02-17 23:36 然终酒肆 阅读(224) 评论(0) 推荐(0) 编辑
摘要: RADIUS:Remote Authentication Dial In User Service 中文名: 远程用户拨号认证服务 是应用最广泛的AAA协议。 AAA协议一般指AAA(网络安全系统),AAA是认证(Authentication)、授权(Authorization)和计费(Accoun 阅读全文
posted @ 2021-02-17 23:25 然终酒肆 阅读(1341) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ boo 阅读全文
posted @ 2021-01-28 21:24 然终酒肆 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 写的很好!!!: https://blog.csdn.net/liangzhaoyang1/article/details/51413108 阅读全文
posted @ 2021-01-26 15:33 然终酒肆 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 怎么我搜到的都东拼西凑你抄我我抄你呢 真正初始化只用这一句就行啊: vector<vector<int> > vec(m, vector<int>(n, 0));//初始化一个m行n列的元素值全为0的二维数组 这是利用了vector的构造方法 另: 二维数组vector的插入 阅读全文
posted @ 2021-01-26 14:40 然终酒肆 阅读(8549) 评论(0) 推荐(4) 编辑
摘要: c++: class Solution { public: string addBinary(string a, string b) { if(a == "") return b; if(b == "") return a; int i = a.size() - 1; int j = b.size( 阅读全文
posted @ 2021-01-25 23:44 然终酒肆 阅读(59) 评论(0) 推荐(0) 编辑
摘要: class Solution { public: vector<int> plusOne(vector<int>& digits) { int len = digits.size(); for(int i = len -1;i>=0;i--) { if(digits[i] != 9) { digit 阅读全文
posted @ 2021-01-25 22:37 然终酒肆 阅读(73) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页