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