add 1.6.* crypto

This commit is contained in:
firmianay 2017-12-25 15:07:24 +08:00
parent c26ae41075
commit 6fada59204
15 changed files with 112 additions and 71 deletions

View File

@ -1,3 +1,4 @@
2017-12-25开始写 Crypto 部分
2017-12-22250 star 成就达成
2017-12-15中文名“CTF从入门到放弃”
2017-12-13开始写 Web 部分(@phantom0301

View File

@ -31,6 +31,13 @@
- [1.5.7 内存管理](doc/1.5.7_memory.md)
- [1.5.8 glibc malloc](doc/1.5.8_glibc_malloc.md)
- [1.6 密码学基础](doc/1.6_crypto_basic.md)
- [1.6.1 初等数论](doc/1.6.1_number_theory.md)
- [1.6.2 近世代数](doc/1.6.2_modern_algebra.md)
- [1.6.3 流密码](doc/1.6.3_stream_cipher.md)
- [1.6.4 分组密码](doc/1.6.4_block_cipher.md)
- [1.6.5 公钥密码](doc/1.6.5_public-key_crypto.md)
- [1.6.6 哈希函数](doc/1.6.6_hash.md)
- [1.6.7 数字签名](doc/1.6.7_digital_signature.md)
- [1.7 Android 安全基础](doc/1.7_android_basic.md)
- [1.7.1 Android 环境搭建](doc/1.7.1_android_env.md)
- [1.7.2 Dalvik 指令集](doc/1.7.2_dalvik.md)
@ -54,6 +61,7 @@
- [三、分类专题篇](doc/3_topics.md)
- [3.1 Reverse](doc/3.1_reverse.md)
- [3.2 Crypto](doc/3.2_crypto.md)
- [3.2.1 古典密码](doc/3.2.1_classic_crypto.md)
- [3.3 Pwn](doc/3.3_pwn.md)
- [3.3.1 格式化字符串漏洞](doc/3.3.1_format_string.md)
- [3.3.2 整数溢出](doc/3.3.2_integer_overflow.md)

View File

@ -26,6 +26,13 @@ GitHub 地址https://github.com/firmianay/CTF-All-In-One
* [1.5.7 内存管理](doc/1.5.7_memory.md)
* [1.5.8 glibc malloc](doc/1.5.8_glibc_malloc.md)
* [1.6 密码学基础](doc/1.6_crypto_basic.md)
* [1.6.1 初等数论](doc/1.6.1_number_theory.md)
* [1.6.2 近世代数](doc/1.6.2_modern_algebra.md)
* [1.6.3 流密码](doc/1.6.3_stream_cipher.md)
* [1.6.4 分组密码](doc/1.6.4_block_cipher.md)
* [1.6.5 公钥密码](doc/1.6.5_public-key_crypto.md)
* [1.6.6 哈希函数](doc/1.6.6_hash.md)
* [1.6.7 数字签名](doc/1.6.7_digital_signature.md)
* [1.7 Android 安全基础](doc/1.7_android_basic.md)
* [1.7.1 Android 环境搭建](doc/1.7.1_android_env.md)
* [1.7.2 Dalvik 指令集](doc/1.7.2_dalvik.md)
@ -47,6 +54,7 @@ GitHub 地址https://github.com/firmianay/CTF-All-In-One
* [三、分类专题篇](doc/3_topics.md)
* [3.1 Reverse](doc/3.1_reverse.md)
* [3.2 Crypto](doc/3.2_crypto.md)
* [3.2.1 古典密码](doc/3.2.1_classic_crypto.md)
* [3.3 Pwn](doc/3.3_pwn.md)
* [3.3.1 格式化字符串漏洞](doc/3.3.1_format_string.md)
* [3.3.2 整数溢出](doc/3.3.2_integer_overflow.md)

View File

@ -0,0 +1 @@
# 1.6.1 初等数论

View File

@ -0,0 +1 @@
# 1.6.2 近世代数

View File

@ -0,0 +1 @@
# 1.6.3 流密码

View File

@ -0,0 +1 @@
# 1.6.4 分组密码

View File

@ -0,0 +1 @@
# 1.6.5 公钥密码

1
doc/1.6.6_hash.md Normal file
View File

@ -0,0 +1 @@
# 1.6.6 哈希函数

View File

@ -0,0 +1 @@
# 1.6.7 数字签名

View File

@ -1 +1,9 @@
# 1.6 密码学基础
- [1.6.1 初等数论](1.6.1_number_theory.md)
- [1.6.2 近世代数](1.6.2_modern_algebra.md)
- [1.6.3 流密码](1.6.3_stream_cipher.md)
- [1.6.4 分组密码](1.6.4_block_cipher.md)
- [1.6.5 公钥密码](1.6.5_public-key_crypto.md)
- [1.6.6 哈希函数](1.6.6_hash.md)
- [1.6.7 数字签名](1.6.7_digital_signature.md)

View File

@ -14,6 +14,13 @@
- [1.5.7 内存管理](1.5.7_memory.md)
- [1.5.8 glibc malloc](1.5.8_glibc_malloc.md)
- [1.6 密码学基础](1.6_crypto_basic.md)
- [1.6.1 初等数论](1.6.1_number_theory.md)
- [1.6.2 近世代数](1.6.2_modern_algebra.md)
- [1.6.3 流密码](1.6.3_stream_cipher.md)
- [1.6.4 分组密码](1.6.4_block_cipher.md)
- [1.6.5 公钥密码](1.6.5_public-key_crypto.md)
- [1.6.6 哈希函数](1.6.6_hash.md)
- [1.6.7 数字签名](1.6.7_digital_signature.md)
- [1.7 Android 安全基础](1.7_android_basic.md)
- [1.7.1 Android 环境搭建](1.7.1_android_env.md)
- [1.7.2 Dalvik 指令集](1.7.2_dalvik.md)

View File

@ -0,0 +1 @@
# 3.2.1 古典密码

View File

@ -1,3 +1,3 @@
# 3.2 Crypto
密码学Cryptography一般可分为古典密码学和现代密码学。
- [3.2.1 古典密码](3.2.1_classic_crypto.md)

View File

@ -2,6 +2,7 @@
- [3.1 Reverse](3.1_reverse.md)
- [3.2 Crypto](3.2_crypto.md)
- [3.2.1 古典密码](3.2.1_classic_crypto.md)
- [3.3 Pwn](3.3_pwn.md)
- [3.3.1 格式化字符串漏洞](3.3.1_format_string.md)
- [3.3.2 整数溢出](3.3.2_integer_overflow.md)