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

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

Issue 211173006: Perform tlslite 0.3.8 -> 0.4.6 renames ahead of time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop the -B 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/datefuncs.py ('k') | third_party/tlslite/tlslite/utils/openssl_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/keyfactory.py
diff --git a/third_party/tlslite/tlslite/utils/keyfactory.py b/third_party/tlslite/tlslite/utils/keyfactory.py
index 5005af7f5b7b0e31fc432988058c50b7299882f4..dff343515d1f529bd3258781fb5352bd376ccb22 100644
--- a/third_party/tlslite/tlslite/utils/keyfactory.py
+++ b/third_party/tlslite/tlslite/utils/keyfactory.py
@@ -5,15 +5,15 @@ parseAsPrivateKey
from compat import *
-from RSAKey import RSAKey
-from Python_RSAKey import Python_RSAKey
+from rsakey import RSAKey
+from python_rsakey import Python_RSAKey
import cryptomath
if cryptomath.m2cryptoLoaded:
- from OpenSSL_RSAKey import OpenSSL_RSAKey
+ from openssl_rsakey import OpenSSL_RSAKey
if cryptomath.pycryptoLoaded:
- from PyCrypto_RSAKey import PyCrypto_RSAKey
+ from pycrypto_rsakey import PyCrypto_RSAKey
# **************************************************************************
# Factory Functions for RSA Keys
« no previous file with comments | « third_party/tlslite/tlslite/utils/datefuncs.py ('k') | third_party/tlslite/tlslite/utils/openssl_aes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698