(以下内容整理自网络文章)加密一般分为对称加密(Symmetric Key Encryption)和非对称加密(Asymmetric Key Encryption)。对称加密又分为分组加密和序列密码。分组密码,也叫块加密(block cyphers),一次加密明文中的一个块。是将明文按一定的位长分组 ...
分类:
其他好文 时间:
2017-12-20 21:55:52
阅读次数:
198
(一)对称加密(Symmetric Cryptography) 对称加密是最快速、最简单的一种加密方式,加密(encryption)与解密(decryption)用的是同样的密钥(secret key)。对称加密有很多种算法,由于它效率很高,所以被广泛使用在很多加密协议的核心当中。 对称加密通常使用 ...
分类:
其他好文 时间:
2017-12-14 21:09:13
阅读次数:
126
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given "Is PAT&TAP symmetric?", the longest sym ...
分类:
其他好文 时间:
2017-12-14 14:56:27
阅读次数:
135
本文同时发表在 "https://github.com/zhangyachen/zhangyachen.github.io/issues/27" 总结下《图解密码技术》的核心点,自己忘的时候瞅一眼。 密码 对称密码(symmetric cryptography) 加密和解密使用同一密匙。 公钥密码( ...
分类:
其他好文 时间:
2017-12-14 04:11:48
阅读次数:
305
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2017-11-12 11:12:11
阅读次数:
162
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2017-11-04 16:17:12
阅读次数:
141
1040. Longest Symmetric String (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue 时间限制 400 ms 时间限制 400 ms 内存限制 65536 kB 内存限制 655 ...
分类:
其他好文 时间:
2017-11-02 01:05:09
阅读次数:
211
一、集合的创建: 2、集合的增 add update():在对集合增加元素的时候是迭代增加到集合中的。 3、集合的删 二、集合的其他操作 1、交集。(&或者intersection) 2、并集。(|或者union) 3、反交集。(^或者symmetric_difference) 4、差集。(-或者d ...
分类:
其他好文 时间:
2017-10-27 21:28:50
阅读次数:
115
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given "Is PAT&TAP symmetric?", the longest sym ...
分类:
其他好文 时间:
2017-10-27 17:56:31
阅读次数:
144
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2017-10-22 21:47:15
阅读次数:
163