Browse Source

fix cipher name in test

auth
clowwindy 10 years ago
parent
commit
5209860db1
  1. 2
      shadowsocks/crypto/table.py

2
shadowsocks/crypto/table.py

@ -170,7 +170,7 @@ def test_encryption():
from shadowsocks.crypto import util from shadowsocks.crypto import util
cipher = TableCipher(b'table', b'test', b'', 1) cipher = TableCipher(b'table', b'test', b'', 1)
decipher = TableCipher(b'rc4-md5', b'test', b'', 0) decipher = TableCipher(b'table', b'test', b'', 0)
util.run_cipher(cipher, decipher) util.run_cipher(cipher, decipher)

Loading…
Cancel
Save