<2017年12月>
262728293012
3456789
10111213141516
17181920212223
24252627282930
31123456

随笔分类 -  算法与数据结构

摘要:一文读懂对称加密、非对称加密、哈希值、签名、证书、https之间的关系2021-11-01 10:21:56<ignore_js_op>文字作为人类特有的交流工具,伴随着整个人类的发展史。可以毫不夸张的说,没有文字人类不可能达到今天的科技成就。因此,人类一直在追求提高信息交流过程中的安全性——从股市 阅读全文
posted @ 2022-07-01 20:55 史D芬周 阅读(567) 评论(0) 推荐(1)
摘要: 阅读全文
posted @ 2019-10-23 14:02 史D芬周 阅读(285) 评论(0) 推荐(0)
摘要:#include<stdio.h>#include<Windows.h> #define SUCCESS 1 // 执行成功 #define INDEX_IS_ERROR -2 // 错误的索引号 #define BUFFER_IS_EMPTY -3 // 缓冲区已空 template <class 阅读全文
posted @ 2019-10-20 12:06 史D芬周 阅读(273) 评论(0) 推荐(0)
摘要:#include<stdio.h>#include<Windows.h> #define SUCCESS 1#define MALLOC_ERROR -2#define INDEX_ERROR -3 template <class T_ELE> class Vector { public: Vect 阅读全文
posted @ 2019-10-19 19:28 史D芬周 阅读(213) 评论(0) 推荐(0)