drop table on Python 3
This commit is contained in:
parent
05ba3cc5aa
commit
497524b313
1 changed files with 16 additions and 10 deletions
|
@ -34,20 +34,25 @@ from shadowsocks.crypto import m2, rc4_md5, salsa20_ctr, ctypes_openssl
|
||||||
|
|
||||||
|
|
||||||
method_supported = {}
|
method_supported = {}
|
||||||
|
|
||||||
method_supported.update(rc4_md5.ciphers)
|
method_supported.update(rc4_md5.ciphers)
|
||||||
method_supported.update(salsa20_ctr.ciphers)
|
method_supported.update(salsa20_ctr.ciphers)
|
||||||
method_supported.update(ctypes_openssl.ciphers)
|
method_supported.update(ctypes_openssl.ciphers)
|
||||||
# let M2Crypto override ctypes_openssl
|
# let M2Crypto override ctypes_openssl
|
||||||
method_supported.update(m2.ciphers)
|
method_supported.update(m2.ciphers)
|
||||||
|
|
||||||
|
if hasattr(string, 'maketrans'):
|
||||||
|
maketrans = string.maketrans
|
||||||
|
translate = string.translate
|
||||||
|
else:
|
||||||
|
maketrans = bytes.maketrans
|
||||||
|
translate = bytes.translate
|
||||||
|
|
||||||
|
|
||||||
def random_string(length):
|
def random_string(length):
|
||||||
try:
|
try:
|
||||||
import M2Crypto.Rand
|
import M2Crypto.Rand
|
||||||
return M2Crypto.Rand.rand_bytes(length)
|
return M2Crypto.Rand.rand_bytes(length)
|
||||||
except ImportError:
|
except ImportError:
|
||||||
# TODO really strong enough on Linux?
|
|
||||||
return os.urandom(length)
|
return os.urandom(length)
|
||||||
|
|
||||||
|
|
||||||
|
@ -60,7 +65,7 @@ def get_table(key):
|
||||||
m.update(key)
|
m.update(key)
|
||||||
s = m.digest()
|
s = m.digest()
|
||||||
(a, b) = struct.unpack('<QQ', s)
|
(a, b) = struct.unpack('<QQ', s)
|
||||||
table = [c for c in string.maketrans('', '')]
|
table = [c for c in maketrans(b'', b'')]
|
||||||
for i in range(1, 1024):
|
for i in range(1, 1024):
|
||||||
table.sort(lambda x, y: int(a % (ord(x) + i) - a % (ord(y) + i)))
|
table.sort(lambda x, y: int(a % (ord(x) + i) - a % (ord(y) + i)))
|
||||||
return table
|
return table
|
||||||
|
@ -72,9 +77,8 @@ def init_table(key, method=None):
|
||||||
if not method:
|
if not method:
|
||||||
if key in cached_tables:
|
if key in cached_tables:
|
||||||
return cached_tables[key]
|
return cached_tables[key]
|
||||||
encrypt_table = ''.join(get_table(key))
|
encrypt_table = b''.join(get_table(key))
|
||||||
decrypt_table = string.maketrans(encrypt_table,
|
decrypt_table = maketrans(encrypt_table, maketrans(b'', b''))
|
||||||
string.maketrans('', ''))
|
|
||||||
cached_tables[key] = [encrypt_table, decrypt_table]
|
cached_tables[key] = [encrypt_table, decrypt_table]
|
||||||
else:
|
else:
|
||||||
Encryptor(key, method) # test if the settings if OK
|
Encryptor(key, method) # test if the settings if OK
|
||||||
|
@ -108,6 +112,8 @@ def EVP_BytesToKey(password, key_len, iv_len):
|
||||||
class Encryptor(object):
|
class Encryptor(object):
|
||||||
def __init__(self, key, method=None):
|
def __init__(self, key, method=None):
|
||||||
if method == b'table':
|
if method == b'table':
|
||||||
|
if bytes != str:
|
||||||
|
raise Exception('table is not supported on Python 3')
|
||||||
method = None
|
method = None
|
||||||
self.key = key
|
self.key = key
|
||||||
self.method = method
|
self.method = method
|
||||||
|
@ -151,7 +157,7 @@ class Encryptor(object):
|
||||||
if len(buf) == 0:
|
if len(buf) == 0:
|
||||||
return buf
|
return buf
|
||||||
if not self.method:
|
if not self.method:
|
||||||
return string.translate(buf, self.encrypt_table)
|
return translate(buf, self.encrypt_table)
|
||||||
else:
|
else:
|
||||||
if self.iv_sent:
|
if self.iv_sent:
|
||||||
return self.cipher.update(buf)
|
return self.cipher.update(buf)
|
||||||
|
@ -163,7 +169,7 @@ class Encryptor(object):
|
||||||
if len(buf) == 0:
|
if len(buf) == 0:
|
||||||
return buf
|
return buf
|
||||||
if not self.method:
|
if not self.method:
|
||||||
return string.translate(buf, self.decrypt_table)
|
return translate(buf, self.decrypt_table)
|
||||||
else:
|
else:
|
||||||
if self.decipher is None:
|
if self.decipher is None:
|
||||||
decipher_iv_len = self.get_cipher_param(self.method)[1]
|
decipher_iv_len = self.get_cipher_param(self.method)[1]
|
||||||
|
@ -182,9 +188,9 @@ def encrypt_all(password, method, op, data):
|
||||||
if not method:
|
if not method:
|
||||||
[encrypt_table, decrypt_table] = init_table(password)
|
[encrypt_table, decrypt_table] = init_table(password)
|
||||||
if op:
|
if op:
|
||||||
return string.translate(data, encrypt_table)
|
return translate(data, encrypt_table)
|
||||||
else:
|
else:
|
||||||
return string.translate(data, decrypt_table)
|
return translate(data, decrypt_table)
|
||||||
else:
|
else:
|
||||||
result = []
|
result = []
|
||||||
method = method.lower()
|
method = method.lower()
|
||||||
|
|
Loading…
Add table
Reference in a new issue