forked from shadowsocks/shadowsocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor encrypt; add cfb1 and cfb8 modes
- Loading branch information
Showing
11 changed files
with
245 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
author='clowwindy', | ||
author_email='[email protected]', | ||
url='https://github.com/clowwindy/shadowsocks', | ||
packages=['shadowsocks'], | ||
packages=['shadowsocks', 'shadowsocks.crypto'], | ||
package_data={ | ||
'shadowsocks': ['README.rst', 'LICENSE'] | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (c) 2014 clowwindy | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (c) 2014 clowwindy | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
|
||
import logging | ||
|
||
__all__ = ['ciphers'] | ||
|
||
loaded = False | ||
|
||
|
||
def load_openssl(): | ||
global loaded, libcrypto, CDLL, c_char_p, c_int, c_long, byref,\ | ||
create_string_buffer, c_void_p, buf | ||
from ctypes import CDLL, c_char_p, c_int, c_long, byref,\ | ||
create_string_buffer, c_void_p | ||
from ctypes.util import find_library | ||
libcrypto_path = find_library('crypto') | ||
logging.info('loading libcrypto from %s', libcrypto_path) | ||
libcrypto = CDLL(libcrypto_path) | ||
libcrypto.EVP_get_cipherbyname.restype = c_void_p | ||
libcrypto.EVP_CIPHER_CTX_new.restype = c_void_p | ||
libcrypto.EVP_CIPHER_CTX_new.argtypes = (c_void_p, c_void_p, c_char_p, | ||
c_char_p) | ||
|
||
libcrypto.EVP_CipherInit_ex.argtypes = (c_void_p, c_void_p, c_char_p, | ||
c_char_p, c_char_p, c_int) | ||
|
||
libcrypto.EVP_CipherUpdate.argtypes = (c_void_p, c_void_p, c_void_p, | ||
c_char_p, c_int) | ||
|
||
libcrypto.EVP_CIPHER_CTX_cleanup.argtypes = (c_void_p,) | ||
libcrypto.EVP_CIPHER_CTX_free.argtypes = (c_void_p,) | ||
|
||
buf = create_string_buffer(65536) | ||
loaded = True | ||
|
||
|
||
class CtypesCrypto(object): | ||
def __init__(self, cipher_name, key, iv, op): | ||
if not loaded: | ||
load_openssl() | ||
self._ctx = None | ||
cipher = libcrypto.EVP_get_cipherbyname(cipher_name) | ||
if not cipher: | ||
raise Exception('cipher %s not found in libcrypto' % cipher_name) | ||
key_ptr = c_char_p(key) | ||
iv_ptr = c_char_p(iv) | ||
self._ctx = libcrypto.EVP_CIPHER_CTX_new(cipher, None, | ||
key_ptr, iv_ptr) | ||
if not self._ctx: | ||
raise Exception('can not create cipher context') | ||
r = libcrypto.EVP_CipherInit_ex(self._ctx, cipher, None, | ||
key_ptr, iv_ptr, c_int(op)) | ||
if not r: | ||
self.clean() | ||
raise Exception('can not initialize cipher context') | ||
|
||
def update(self, data): | ||
cipher_out_len = c_long(0) | ||
libcrypto.EVP_CipherUpdate(self._ctx, byref(buf), | ||
byref(cipher_out_len), c_char_p(data), | ||
len(data)) | ||
return buf.raw[:cipher_out_len.value] | ||
|
||
def __del__(self): | ||
self.clean() | ||
|
||
def clean(self): | ||
if self._ctx: | ||
libcrypto.EVP_CIPHER_CTX_cleanup(self._ctx) | ||
libcrypto.EVP_CIPHER_CTX_free(self._ctx) | ||
|
||
|
||
ciphers = { | ||
'aes-128-cfb8': (16, 16, CtypesCrypto), | ||
'aes-192-cfb8': (24, 16, CtypesCrypto), | ||
'aes-256-cfb8': (32, 16, CtypesCrypto), | ||
'aes-128-cfb1': (16, 16, CtypesCrypto), | ||
'aes-192-cfb1': (24, 16, CtypesCrypto), | ||
'aes-256-cfb1': (32, 16, CtypesCrypto), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (c) 2014 clowwindy | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
|
||
import sys | ||
import logging | ||
|
||
__all__ = ['ciphers'] | ||
|
||
has_m2 = True | ||
try: | ||
__import__('M2Crypto') | ||
except ImportError: | ||
has_m2 = False | ||
|
||
|
||
def create_cipher(alg, key, iv, op, key_as_bytes=0, d=None, salt=None, i=1, | ||
padding=1): | ||
|
||
import M2Crypto.EVP | ||
return M2Crypto.EVP.Cipher('rc4', key, iv, op, key_as_bytes=0, | ||
d='md5', salt=None, i=1, padding=1) | ||
|
||
|
||
def err(alg, key, iv, op, key_as_bytes=0, d=None, salt=None, i=1, padding=1): | ||
logging.error(('M2Crypto is required to use %s, please run' | ||
' `apt-get install python-m2crypto`') % alg) | ||
sys.exit(1) | ||
|
||
|
||
if not has_m2: | ||
create_cipher = err | ||
|
||
ciphers = { | ||
'aes-128-cfb': (16, 16, create_cipher), | ||
'aes-192-cfb': (24, 16, create_cipher), | ||
'aes-256-cfb': (32, 16, create_cipher), | ||
'bf-cfb': (16, 8, create_cipher), | ||
'camellia-128-cfb': (16, 16, create_cipher), | ||
'camellia-192-cfb': (24, 16, create_cipher), | ||
'camellia-256-cfb': (32, 16, create_cipher), | ||
'cast5-cfb': (16, 8, create_cipher), | ||
'des-cfb': (8, 8, create_cipher), | ||
'idea-cfb': (16, 8, create_cipher), | ||
'rc2-cfb': (16, 8, create_cipher), | ||
'rc4': (16, 0, create_cipher), | ||
'seed-cfb': (16, 16, create_cipher), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"server":"127.0.0.1", | ||
"server_port":8388, | ||
"local_port":1081, | ||
"password":"aes_password", | ||
"timeout":60, | ||
"method":"aes-256-cfb1", | ||
"local_address":"127.0.0.1", | ||
"fast_open":false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"server":"127.0.0.1", | ||
"server_port":8388, | ||
"local_port":1081, | ||
"password":"aes_password", | ||
"timeout":60, | ||
"method":"aes-256-cfb8", | ||
"local_address":"127.0.0.1", | ||
"fast_open":false | ||
} |
Oops, something went wrong.