15

I am using Python 2.7. I have an alphanumeric string, on which I want to perform a encryption/decryption. Whatever I do should remain 2-way and the result should be alphanumeric too.

For example:

str = 'ma6546fbd'
encrypted_data = encrypt_function(str)
decrypted_data = decrypt_function(encrypted_data)
print decrypted_data # I get 'ma6546fbd'

What have I done:

I have written a function

def xor_crypt_string(data, key):
    return ''.join(chr(ord(x) ^ ord(y)) for (x,y) in izip(data, cycle(key)))

This takes the data and a key and returns the result, the problem is that it includes special characters too, which I want to avoid.

4

3 に答える 3

39

本格的な暗号化 (解読不可能な読み取り) が必要な場合は、 pycryptoのAESを次のように使用します。

>>> from Crypto.Cipher import AES
>>> from Crypto import Random
>>> key = b'Sixteen byte key'
>>> iv = Random.new().read(AES.block_size)
>>> cipher = AES.new(key, AES.MODE_CFB, iv)
>>> msg = iv + cipher.encrypt(b'Attack at dawn')
>>> msg.encode("hex")
'e10e096aabff9db382abe8d704404995a7b64d72a4e1b9e5208912d206c4'

それがあなたのアスキーメッセージです。このようにメッセージをデコードします

>>> recv='e10e096aabff9db382abe8d704404995a7b64d72a4e1b9e5208912d206c4'
>>> cipher.decrypt(recv.decode("hex"))[len(iv):]
'Attack at dawn'
>>> 

自分で作成した暗号化方法は、専門家によって簡単に破られる可能性があり、上で示したものはそのカテゴリに分類されます。

于 2012-06-21T06:47:27.607 に答える
2

英数字の要件はどのくらい厳格ですか?

既存の暗号化関数の結果を base64 エンコードするのはどうですか? いくつかの迷子の「=」パディング文字が残る可能性がありますが、これらをトリミングして、余分なパディングを計算して処理することができます。

def xor_crypt_string(plaintext, key):
    ciphertext = ''.join(chr(ord(x) ^ ord(y)) for (x,y) in izip(plaintext, cycle(key)))
    return ciphertext.encode('base64')

def xor_decrypt_string(ciphertext, key):
    ciphertext = ciphertext.decode('base64')
    return ''.join(chr(ord(x) ^ ord(y)) for (x,y) in izip(ciphertext, cycle(key)))
于 2012-06-21T06:48:11.600 に答える