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"] |