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

Unified Diff: third_party/tlslite/tlslite/utils/__init__.py

Issue 210323002: Update tlslite to 0.4.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More policy_testserver.py Created 6 years, 9 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/TripleDES.py ('k') | third_party/tlslite/tlslite/utils/aes.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/tlslite/utils/__init__.py
diff --git a/third_party/tlslite/tlslite/utils/__init__.py b/third_party/tlslite/tlslite/utils/__init__.py
index e96b4bef8a566b5bb7aebcd8477d8191dd978ed4..4d49df64e245c6ecee1be5e321251188f7b7df77 100644
--- a/third_party/tlslite/tlslite/utils/__init__.py
+++ b/third_party/tlslite/tlslite/utils/__init__.py
@@ -1,31 +1,29 @@
+# Author: Trevor Perrin
+# See the LICENSE file for legal information regarding use of this file.
+
"""Toolkit for crypto and other stuff."""
-__all__ = ["AES",
- "ASN1Parser",
+__all__ = ["aes",
+ "asn1parser",
"cipherfactory",
"codec",
- "Cryptlib_AES",
- "Cryptlib_RC4",
- "Cryptlib_TripleDES",
- "cryptomath: cryptomath module",
- "dateFuncs",
- "hmac",
- "JCE_RSAKey",
+ "cryptomath",
+ "datefuncs",
"compat",
"keyfactory",
- "OpenSSL_AES",
- "OpenSSL_RC4",
- "OpenSSL_RSAKey",
- "OpenSSL_TripleDES",
- "PyCrypto_AES",
- "PyCrypto_RC4",
- "PyCrypto_RSAKey",
- "PyCrypto_TripleDES",
- "Python_AES",
- "Python_RC4",
- "Python_RSAKey",
- "RC4",
+ "openssl_aes",
+ "openssl_rc4",
+ "openssl_rsakey",
+ "openssl_tripledes",
+ "pycrypto_aes",
+ "pycrypto_rc4",
+ "pycrypto_rsakey",
+ "pycrypto_tripledes",
+ "python_aes",
+ "python_rc4",
+ "python_rsakey",
+ "rc4",
"rijndael",
- "RSAKey",
- "TripleDES",
- "xmltools"]
+ "rsakey",
+ "tackpywrapper",
+ "tripledes"]
« no previous file with comments | « third_party/tlslite/tlslite/utils/TripleDES.py ('k') | third_party/tlslite/tlslite/utils/aes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698