From 96200d7d76afa3d116c2cfa30a23bea4d32421d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=B4=E5=A8=83=E9=85=B1?= Date: Sun, 14 May 2017 16:42:48 +0800 Subject: [PATCH] fix key size --- shadowsocks/crypto/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadowsocks/crypto/table.py b/shadowsocks/crypto/table.py index fd6aa94..60c2f24 100644 --- a/shadowsocks/crypto/table.py +++ b/shadowsocks/crypto/table.py @@ -74,7 +74,7 @@ class NoneCipher(object): ciphers = { 'none': (16, 0, NoneCipher), - 'table': (0, 0, TableCipher) + 'table': (16, 0, TableCipher) }