You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.0 KiB
51 lines
1.0 KiB
from __future__ import absolute_import, division, print_function, \
|
|
with_statement
|
|
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../'))
|
|
|
|
|
|
from shadowsocks.crypto import rc4_md5
|
|
from shadowsocks.crypto import openssl
|
|
from shadowsocks.crypto import sodium
|
|
from shadowsocks.crypto import table
|
|
|
|
def run(func):
|
|
try:
|
|
func()
|
|
except:
|
|
pass
|
|
|
|
def run_n(func, name):
|
|
try:
|
|
func(name)
|
|
except:
|
|
pass
|
|
|
|
def main():
|
|
print("\n""rc4_md5")
|
|
rc4_md5.test()
|
|
print("\n""aes-256-cfb")
|
|
openssl.test_aes_256_cfb()
|
|
print("\n""aes-128-cfb")
|
|
openssl.test_aes_128_cfb()
|
|
print("\n""bf-cfb")
|
|
run(openssl.test_bf_cfb)
|
|
print("\n""camellia-128-cfb")
|
|
run_n(openssl.run_method, "camellia-128-cfb")
|
|
print("\n""cast5-cfb")
|
|
run_n(openssl.run_method, "cast5-cfb")
|
|
print("\n""idea-cfb")
|
|
run_n(openssl.run_method, "idea-cfb")
|
|
print("\n""seed-cfb")
|
|
run_n(openssl.run_method, "seed-cfb")
|
|
print("\n""salsa20")
|
|
run(sodium.test_salsa20)
|
|
print("\n""chacha20")
|
|
run(sodium.test_chacha20)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|
|
|