| Index: third_party/tlslite/tlslite/utils/openssl_tripledes.py
|
| diff --git a/third_party/tlslite/tlslite/utils/OpenSSL_TripleDES.py b/third_party/tlslite/tlslite/utils/openssl_tripledes.py
|
| similarity index 96%
|
| rename from third_party/tlslite/tlslite/utils/OpenSSL_TripleDES.py
|
| rename to third_party/tlslite/tlslite/utils/openssl_tripledes.py
|
| index f5ba16565210cf1b6af52eb79909c1c0b304ab8d..856c7af486a5a50cc15af199dba77c064b26b69a 100644
|
| --- a/third_party/tlslite/tlslite/utils/OpenSSL_TripleDES.py
|
| +++ b/third_party/tlslite/tlslite/utils/openssl_tripledes.py
|
| @@ -1,7 +1,7 @@
|
| """OpenSSL/M2Crypto 3DES implementation."""
|
|
|
| from cryptomath import *
|
| -from TripleDES import *
|
| +from tripledes import *
|
|
|
| if m2cryptoLoaded:
|
|
|
| @@ -41,4 +41,4 @@ if m2cryptoLoaded:
|
| plaintext = plaintext[:len(ciphertext)]
|
| m2.cipher_ctx_free(context)
|
| self.IV = ciphertext[-self.block_size:]
|
| - return plaintext
|
| + return plaintext
|
|
|