Advertisement
Guest User

shadowsocks-libev test

a guest
Jun 12th, 2017
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. #!/usr/bin/python
  2. import os
  3.  
  4. ciphers = ["aes-128-gcm", "aes-192-gcm", "aes-256-gcm", "rc4-md5", "aes-128-cfb", "aes-192-cfb", "aes-256-cfb", "aes-128-ctr", "aes-192-ctr", "aes-256-ctr", "bf-cfb", "camellia-128-cfb", "camellia-192-cfb", "camellia-256-cfb", "chacha20-ietf-poly1305", "salsa20", "chacha20", "chacha20-ietf"]
  5.  
  6. for c in ciphers:
  7.     print "************************************"
  8.     print c
  9.     print "************************************"
  10.     os.system("./tester.sh 1 " + c)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement