最近在看一本书。名字是 python密码学编程。在此做一些笔记,同时也为有需要的人提供一些参考。
********************************************************************
* quote : "http://inventwithpython.com/" *
* python-version : 2.7.11 *
********************************************************************
1.第一种加密方法。反转加密法。
即通过反向输出消息来进行加密。例如将“Hello World” 加密成 “dlroW olleH”
这是一种非常弱的加密方式。么什了说它清弄以可然仍你,密加被已息信条这使即
1 message = "Three can keep a secret,if two of them are dead."
2 translated = ''
3
4 i = len(message) - 1
5 while i >= 0:
6 translated = translated + message[i]
7 i = i - 1
8 print translated
实现思路也非常简单。就是把一个String从后到前拼接到另一个String上。
至于解密。可以使message 为加密后的密文,打印出来的即为明文。
2.凯撒加密法
凯撒加密(Caesar cipher)是一种简单的消息编码方式:它根据字母表将消息中的每个字母移动常量位k。举个例子如果k等于3,则在编码后的消息中,每个字母都会向前移动3位:a会被替换为d;b会被替换成e;依此类推。字母表末尾将回卷到字母表开头。于是,w会被替换为z,x会被替换为a
1 message = "this is my secret message"
2 key = 13
3
4 mode = "encrypt"
5 LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
6 translated = ''
7 message = message.upper()
8
9 for symbol in message:
10 if symbol in LETTERS:
11 num = LETTERS.find(symbol)
12 if mode == "encrypt":
13 num = num + key
14 elif mode == &#