Browse Source

rename test_cipher as it will break unit tests

auth
clowwindy 10 years ago
parent
commit
710fe14190
  1. 2
      shadowsocks/encrypt.py
  2. 2
      shadowsocks/local.py
  3. 2
      shadowsocks/server.py

2
shadowsocks/encrypt.py

@ -51,7 +51,7 @@ def random_string(length):
cached_keys = {} cached_keys = {}
def test_cipher(key, method=None): def try_cipher(key, method=None):
Encryptor(key, method) Encryptor(key, method)

2
shadowsocks/local.py

@ -46,7 +46,7 @@ def main():
utils.print_shadowsocks() utils.print_shadowsocks()
encrypt.test_cipher(config['password'], config['method']) encrypt.try_cipher(config['password'], config['method'])
try: try:
logging.info("starting local at %s:%d" % logging.info("starting local at %s:%d" %

2
shadowsocks/server.py

@ -54,7 +54,7 @@ def main():
else: else:
config['port_password'][str(server_port)] = config['password'] config['port_password'][str(server_port)] = config['password']
encrypt.test_cipher(config['password'], config['method']) encrypt.try_cipher(config['password'], config['method'])
tcp_servers = [] tcp_servers = []
udp_servers = [] udp_servers = []
dns_resolver = asyncdns.DNSResolver() dns_resolver = asyncdns.DNSResolver()

Loading…
Cancel
Save