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..5f53b98f9e9ee92b8d355656c23f9b9beda32df2 100644 |
--- a/third_party/tlslite/tlslite/utils/__init__.py |
+++ b/third_party/tlslite/tlslite/utils/__init__.py |
@@ -1,31 +1,31 @@ |
"""Toolkit for crypto and other stuff.""" |
-__all__ = ["AES", |
- "ASN1Parser", |
+__all__ = ["aes", |
+ "asn1parser", |
"cipherfactory", |
"codec", |
- "Cryptlib_AES", |
- "Cryptlib_RC4", |
- "Cryptlib_TripleDES", |
+ "cryptlib_aes", |
+ "cryptlib_rc4", |
+ "cryptlib_tripledes", |
"cryptomath: cryptomath module", |
- "dateFuncs", |
+ "datefuncs", |
"hmac", |
- "JCE_RSAKey", |
+ "jce_rsakey", |
"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", |
+ "rsakey", |
+ "tripledes", |
"xmltools"] |