| Index: third_party/tlslite/tests/tlstest.py
|
| diff --git a/third_party/tlslite/tests/tlstest.py b/third_party/tlslite/tests/tlstest.py
|
| index fa1b13fa65d3248748de662d75a136ecedf39cba..7985d232821ea136806bcb8518ba6df033af57b2 100755
|
| --- a/third_party/tlslite/tests/tlstest.py
|
| +++ b/third_party/tlslite/tests/tlstest.py
|
| @@ -318,9 +318,11 @@ def clientTestCmd(argv):
|
|
|
| print("Test 23 - throughput test")
|
| for implementation in implementations:
|
| - for cipher in ["aes128", "aes256", "3des", "rc4"]:
|
| + for cipher in ["aes128gcm", "aes128", "aes256", "3des", "rc4"]:
|
| if cipher == "3des" and implementation not in ("openssl", "pycrypto"):
|
| continue
|
| + if cipher == "aes128gcm" and implementation not in ("pycrypto", "python"):
|
| + continue
|
|
|
| print("Test 23:", end=' ')
|
| connection = connect()
|
| @@ -678,9 +680,11 @@ def serverTestCmd(argv):
|
|
|
| print("Test 23 - throughput test")
|
| for implementation in implementations:
|
| - for cipher in ["aes128", "aes256", "3des", "rc4"]:
|
| + for cipher in ["aes128gcm", "aes128", "aes256", "3des", "rc4"]:
|
| if cipher == "3des" and implementation not in ("openssl", "pycrypto"):
|
| continue
|
| + if cipher == "aes128gcm" and implementation not in ("pycrypto", "python"):
|
| + continue
|
|
|
| print("Test 23:", end=' ')
|
| connection = connect()
|
|
|