misc
This commit is contained in:
1809070261@qq.com
2018-08-25 21:41:48 +08:00
parent 9d29d4806c
commit 5a2f7e3fa1
8 changed files with 17 additions and 0 deletions

View File

@@ -20,6 +20,8 @@ This is the first time we have written a project, some of which are collected fr
- Misc_5
- Misc_6
- Misc_7
- Misc_8
- Misc_9
- **Crypto**
- hex
- base

1
misc/misc_8/README.md Normal file
View File

@@ -0,0 +1 @@
### 一张简单的图片

BIN
misc/misc_8/hub.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 KiB

BIN
misc/misc_8/wp.doc Normal file

Binary file not shown.

1
misc/misc_9/README.md Normal file
View File

@@ -0,0 +1 @@
### 用python来实现哦

BIN
misc/misc_9/aaa.rar Normal file

Binary file not shown.

BIN
misc/misc_9/wp.doc Normal file

Binary file not shown.

13
misc/misc_9/yiwei.py Normal file
View File

@@ -0,0 +1,13 @@
from string import maketrans
in_string = "abcdefghijklmnopqrstuvwxyz"
out_string = "cdefghijklmnopqrstuvwxyzab"
goal = """g fmnc wms bgblr rpylqjyrc gr zw fylb.
rfyrq ufyr amknsrcpq ypc dmp. bmgle gr gl zw fylb
gq glcddgagclr ylb rfyr'q ufw rfgq rcvr gq qm jmle.
sqgle qrpgle.kyicrpylq() gq pcamkkclbcb. lmu ynnjw ml rfc spj."""
trans_string = maketrans(in_string, out_string)
print goal.translate(trans_string)