| Index: third_party/tlslite/tlslite/utils/pycrypto_tripledes.py
|
| diff --git a/third_party/tlslite/tlslite/utils/PyCrypto_TripleDES.py b/third_party/tlslite/tlslite/utils/pycrypto_tripledes.py
|
| similarity index 87%
|
| rename from third_party/tlslite/tlslite/utils/PyCrypto_TripleDES.py
|
| rename to third_party/tlslite/tlslite/utils/pycrypto_tripledes.py
|
| index 8c22bb80a57eb407e29fcb22611d444e7a2cf094..0bc1104ab993f6bc1f2e525fdcb0e604a90b408f 100644
|
| --- a/third_party/tlslite/tlslite/utils/PyCrypto_TripleDES.py
|
| +++ b/third_party/tlslite/tlslite/utils/pycrypto_tripledes.py
|
| @@ -1,7 +1,7 @@
|
| """PyCrypto 3DES implementation."""
|
|
|
| from cryptomath import *
|
| -from TripleDES import *
|
| +from tripledes import *
|
|
|
| if pycryptoLoaded:
|
| import Crypto.Cipher.DES3
|
| @@ -19,4 +19,4 @@ if pycryptoLoaded:
|
| return self.context.encrypt(plaintext)
|
|
|
| def decrypt(self, ciphertext):
|
| - return self.context.decrypt(ciphertext)
|
| + return self.context.decrypt(ciphertext)
|
|
|