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

Unified Diff: third_party/tlslite/tlslite/utils/rc4.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/tlslite/utils/python_aesgcm.py ('k') | third_party/tlslite/tlslite/utils/tripledes.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/tlslite/utils/rc4.py
diff --git a/third_party/tlslite/tlslite/utils/rc4.py b/third_party/tlslite/tlslite/utils/rc4.py
index 809026a21ce9ba42374ccf28f4713e1103b01f90..3853f5beaf4cf0e4068930846511d63f3a514825 100644
--- a/third_party/tlslite/tlslite/utils/rc4.py
+++ b/third_party/tlslite/tlslite/utils/rc4.py
@@ -9,6 +9,7 @@ class RC4(object):
if len(keyBytes) < 16 or len(keyBytes) > 256:
raise ValueError()
self.isBlockCipher = False
+ self.isAEAD = False
self.name = "rc4"
self.implementation = implementation
@@ -16,4 +17,4 @@ class RC4(object):
raise NotImplementedError()
def decrypt(self, ciphertext):
- raise NotImplementedError()
+ raise NotImplementedError()
« no previous file with comments | « third_party/tlslite/tlslite/utils/python_aesgcm.py ('k') | third_party/tlslite/tlslite/utils/tripledes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698