思考 1.什么是非对称加密? 公钥加密系统,广泛用于数据加密传输 更详细的解释可参考维基百科 ( https://en.wikipedia.org/wiki/RSA_cryptosystem) 2.非对称加密难吗? very easy! 几乎每一种开发语言都能处理,同时也存在大量的工具 Python ...
分类:
编程语言 时间:
2020-02-12 22:25:11
阅读次数:
101
C. Make Good time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Let's call an array a1,a2,… ...
分类:
其他好文 时间:
2020-02-12 00:35:24
阅读次数:
75
Canary 参考链接:https://ctf wiki.github.io/ctf wiki/pwn/linux/mitigation/canary zh/ 0x1 简介: 用于防止栈溢出被利用的一种方法,原理是在栈的ebp下面放一个随机数,在函数返回之前会检查这个数有没有被修改,就可以检测是否发 ...
分类:
其他好文 时间:
2020-02-10 17:49:53
阅读次数:
96
卡特兰数:https://oi-wiki.org/math/catalan/ 1 #include <iostream> 2 using namespace std; 3 4 const int mod = 1e9+7; 5 6 long long qmi(long long a, long lon ...
分类:
其他好文 时间:
2020-02-08 15:35:27
阅读次数:
95
准备工具 MSF https://github.com/rapid7/metasploit-framework/wiki/Nightly-Installers Donut https://github.com/TheWover/donut 准备的shellcode_inject.rb代码 ## # ...
分类:
系统相关 时间:
2020-02-08 09:22:54
阅读次数:
178
1.下载msys2,官方地址:http://www.msys2.org/,这里选择64位的安装器 2.安装完成之后,先别启动msys2,在 安装根目录/etc/pacman.d/ 下找到mirrorlist.mingw32、mirrorlist.mingw64和mirrorlist.msys并进行修 ...
摘自 Wikipedia https://bafybeiemxf5abjwjbikoz4mc3a3dla6ual3jsgpdr4cjr3oz3evfyavhwq.ipfs.dweb.link/wiki/Dynamic_programming.html Dynamic programming in c ...
分类:
其他好文 时间:
2020-02-07 16:46:47
阅读次数:
66
首先列上参考的资料来源 http://wiki.nesdev.com/w/index.php/NES_reference_guide 算是最全的FC相关资料的网站,能在这里找到所有的FC硬件信息以及逻辑(个人认为查找信息可以,但是不适合用来上手,信息过于详细) https://github.com/ ...
分类:
其他好文 时间:
2020-02-05 13:46:31
阅读次数:
158
协程 coroutine最近频繁的听说到 “协程” 这个词,花了一段时间肤浅的研究了一下。对于 “它是一个什么东西” 有了一个大概的了解。from wiki Coroutines are computer program components that generalize subroutines ... ...
分类:
其他好文 时间:
2020-02-05 09:29:33
阅读次数:
60
数组类型 如果我们有一组类型相同的变量,例如,5位同学的成绩,可以这么写: public class Main { public static void main(String[] args) { // 5位同学的成绩: int n1 = 68; int n2 = 79; int n3 = 91; ...
分类:
编程语言 时间:
2020-02-04 11:06:40
阅读次数:
81