web安全威胁 web流量安全方法 SSL 两层协议组成。会话通过握手协议创建。 会话状态:会话标识符、对等证书、压缩方法、密码规格、主密钥(C/S共享的48字节的会话密钥)、可恢复性。 连接状态:随机字节串、服务器写MAC密钥、客户端写MAC密钥、服务器写密钥、客户端写密钥、初始化向量IV、序列号 ...
分类:
其他好文 时间:
2017-10-20 16:47:01
阅读次数:
199
1:需求分析 I:能用参数控制生成式子的数目。 II:列出的式子运算符号是“+”、“-”、“x”、“÷”。 III:结果不能有小数,必须化成分数形式。 IV:能够判断答案的对错,并计算正确率,错误率。 2:功能设计 基本功能: I:随机生成式子。 II:运算结果,并与输入结果相比较。 III:计算正 ...
分类:
其他好文 时间:
2017-10-19 21:17:10
阅读次数:
289
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. ...
分类:
其他好文 时间:
2017-10-19 21:15:18
阅读次数:
205
HDU1029:Ignatius and the Princess IV kuangbin专题12基础dp:B题 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32767 K (Java/Others)Total Submiss ...
分类:
编程语言 时间:
2017-10-11 23:49:55
阅读次数:
265
将给定的数字转换成罗马数字。所有返回的 罗马数字 都应该是大写形式。 convert(2) 应该返回 "II"。convert(3) 应该返回 "III"。convert(4) 应该返回 "IV"。convert(5) 应该返回 "V"。convert(9) 应该返回 "IX"。convert(12 ...
分类:
其他好文 时间:
2017-09-30 13:24:03
阅读次数:
143
链接:http://acm.hdu.edu.cn/showproblem.php?pid=3416 题意:starvae在城市A,要去城市B约妹子,要走最短路,并且每段路只能走一次,不能重复走。 题解:在走最短路的情况下,有多少条路从A到B,并且每条路是不重复的(路上经过的任何一条边都不可以重复)。 ...
分类:
其他好文 时间:
2017-09-29 14:59:20
阅读次数:
167
Given a Binary Search Tree and a target number, return true if there exist two elements in the BST such that their sum is equal to the given target. E ...
分类:
其他好文 时间:
2017-09-26 21:00:45
阅读次数:
203
【BZOJ4917】Hash Killer IV Description 有一天,tangjz造了一个Hash函数: unsigned int Hash(unsigned int v){ unsigned int t = v; t = t + (t << 10); t = t ^ (t >> 6); ...
分类:
其他好文 时间:
2017-09-24 10:42:03
阅读次数:
106
题目描述 已知函数: unsigned int Hash(unsigned int v){ unsigned int t = v; t = t + (t << 10); t = t ^ (t >> 6); t = t + (t << 3); t = t ^ (t >> 11); t = t + (t ...
分类:
其他好文 时间:
2017-09-21 21:03:30
阅读次数:
136