Skip to content

Commit

Permalink
fix auth_chain_e
Browse files Browse the repository at this point in the history
  • Loading branch information
Akkariiin committed Sep 24, 2017
1 parent 9b2de51 commit 5d8e0e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shadowsocks/obfsplugin/auth_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ def rnd_data_len(self, buf_size, last_hash, random):

class auth_chain_e(auth_chain_d):
def __init__(self, method):
super(auth_chain_d, self).__init__(method)
super(auth_chain_e, self).__init__(method)
self.salt = b"auth_chain_e"
self.no_compatible_method = 'auth_chain_e'

Expand All @@ -869,7 +869,7 @@ def rnd_data_len(self, buf_size, last_hash, random):
# when every connect create, generate size_list will different when every day or every custom time interval which set in the config
class auth_chain_f(auth_chain_e):
def __init__(self, method):
super(auth_chain_e, self).__init__(method)
super(auth_chain_f, self).__init__(method)
self.salt = b"auth_chain_f"
self.no_compatible_method = 'auth_chain_f'

Expand Down

0 comments on commit 5d8e0e8

Please sign in to comment.