环境 1. jdk 8 2. spring security crypto 4.2.12.RELEASE 示例 AES (Advanced Encryption Standard)属于对称加密,用来替换 DES 和 3DES 加密。 AES 加密有几种模式可选,下面演示 ECB 和 CBC 模式。 ...
分类:
编程语言 时间:
2020-05-06 20:04:13
阅读次数:
76
[TOC] JavaScript弹窗实例 简单博客 仿照菜鸟教程javascript实例弹窗,改造成为一个简单博客。 功能 点击写点什么弹窗,可以输入文字。 关闭弹窗时自动保存,并且将弹窗内容转换为段落中的文字。 low没有下限 实现 step1 设置弹窗容器,包含关闭按钮和文本区域,设置displ ...
分类:
编程语言 时间:
2020-05-05 09:14:21
阅读次数:
65
题目: 解答: 1 class Solution { 2 public: 3 vector<int> twoSum(vector<int>& numbers, int target) 4 { 5 int low = 0; 6 int high = numbers.size() - 1; 7 8 wh ...
分类:
编程语言 时间:
2020-05-04 17:27:43
阅读次数:
67
一 文献题目: Genome wide DNA methylation profiles of low and high grade adenoma reveals potential biomarkers for early detection of colorectal carcinoma 不想 ...
分类:
其他好文 时间:
2020-05-03 20:40:45
阅读次数:
81
题目: 解答: 1 class Solution { 2 public: 3 int compress(vector<char>& chars) 4 { 5 6 if (chars.empty()) 7 { 8 return 0; 9 } 10 11 size_t j = 0; 12 int cnt ...
分类:
其他好文 时间:
2020-05-03 20:05:57
阅读次数:
53
dvwa文件上传(file upload) low 并没有对上传的文件做任何过滤,可以直接传php马 medium 最简单的文件包含代码,以php方式解析page路径文件(无论你是什么格式) 对应low文件上传,无论你传什么格式,都直接解析 1. 将page值改为,你上传文件后返回的路径 http: ...
分类:
Web程序 时间:
2020-05-03 16:43:44
阅读次数:
71
``` cpp //Tarjan求割点 void tarjan(int now,int fa){ int num=0; low[now]=dfn[now]=++dfnc; for(int i=head[now];i;i=b[i].next){ int u=b[i].to; if(!dfn[u]){ ... ...
分类:
其他好文 时间:
2020-05-01 12:26:28
阅读次数:
60
linux中tar命令用法 总结 *.tar 用 tar –xvf 解压 *.gz 用 gzip -d或者gunzip 解压 *.tar.gz和*.tgz 用 tar –xzf 解压 *.bz2 用 bzip2 -d或者用bunzip2 解压 *.tar.bz2用tar –xjf 解压 *.Z 用 ...
分类:
系统相关 时间:
2020-05-01 10:43:44
阅读次数:
75
最坏时间复杂度O(n2),最好和平均是O(n*log2n) 伪代码: 1 QuickSort(A,low,high) 2 if(low<high) 3 index = Partition(A,low,high) 4 QuickSort(A,low,index-1) 5 QuickSort(A,ind ...
分类:
编程语言 时间:
2020-04-30 19:32:36
阅读次数:
75