diff --git a/shadowsocks/obfsplugin/auth_chain.py b/shadowsocks/obfsplugin/auth_chain.py index 14138193d..42abeea14 100644 --- a/shadowsocks/obfsplugin/auth_chain.py +++ b/shadowsocks/obfsplugin/auth_chain.py @@ -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' @@ -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'