From 33862fa8d31708c15dbb059cd3fde2718c322ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=B4=E5=A8=83=E9=85=B1?= Date: Sat, 31 Dec 2016 23:16:29 +0800 Subject: [PATCH] remove auth_sha1_v3 --- shadowsocks/obfsplugin/auth.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/shadowsocks/obfsplugin/auth.py b/shadowsocks/obfsplugin/auth.py index 54ca924..5d4e748 100644 --- a/shadowsocks/obfsplugin/auth.py +++ b/shadowsocks/obfsplugin/auth.py @@ -42,9 +42,6 @@ def create_auth_sha1(method): def create_auth_sha1_v2(method): return auth_sha1_v2(method) -def create_auth_sha1_v3(method): - return auth_sha1_v3(method) - def create_auth_sha1_v4(method): return auth_sha1_v4(method) @@ -62,7 +59,6 @@ obfs_map = { 'auth_sha1_compatible': (create_auth_sha1,), 'auth_sha1_v2': (create_auth_sha1_v2,), 'auth_sha1_v2_compatible': (create_auth_sha1_v2,), - 'auth_sha1_v3': (create_auth_sha1_v3,), 'auth_sha1_v4': (create_auth_sha1_v4,), 'auth_aes128': (create_auth_aes128,), 'auth_aes128_md5': (create_auth_aes128_md5,),