Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/tlslite/tests/tlstest.py

Issue 875683002: Implement AES-GCM in tlslite. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/tlslite/patches/aes_gcm.patch ('k') | third_party/tlslite/tlslite/constants.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « third_party/tlslite/patches/aes_gcm.patch ('k') | third_party/tlslite/tlslite/constants.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698