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

@ -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)