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

Unified Diff: third_party/tlslite/tlslite/utils/OpenSSL_TripleDES.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
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
deleted file mode 100644
index f5ba16565210cf1b6af52eb79909c1c0b304ab8d..0000000000000000000000000000000000000000
--- a/third_party/tlslite/tlslite/utils/OpenSSL_TripleDES.py
+++ /dev/null
@@ -1,44 +0,0 @@
-"""OpenSSL/M2Crypto 3DES implementation."""
-
-from cryptomath import *
-from TripleDES import *
-
-if m2cryptoLoaded:
-
- def new(key, mode, IV):
- return OpenSSL_TripleDES(key, mode, IV)
-
- class OpenSSL_TripleDES(TripleDES):
-
- def __init__(self, key, mode, IV):
- TripleDES.__init__(self, key, mode, IV, "openssl")
- self.key = key
- self.IV = IV
-
- def _createContext(self, encrypt):
- context = m2.cipher_ctx_new()
- cipherType = m2.des_ede3_cbc()
- m2.cipher_init(context, cipherType, self.key, self.IV, encrypt)
- return context
-
- def encrypt(self, plaintext):
- TripleDES.encrypt(self, plaintext)
- context = self._createContext(1)
- ciphertext = m2.cipher_update(context, plaintext)
- m2.cipher_ctx_free(context)
- self.IV = ciphertext[-self.block_size:]
- return ciphertext
-
- def decrypt(self, ciphertext):
- TripleDES.decrypt(self, ciphertext)
- context = self._createContext(0)
- #I think M2Crypto has a bug - it fails to decrypt and return the last block passed in.
- #To work around this, we append sixteen zeros to the string, below:
- plaintext = m2.cipher_update(context, ciphertext+('\0'*16))
-
- #If this bug is ever fixed, then plaintext will end up having a garbage
- #plaintext block on the end. That's okay - the below code will ignore it.
- plaintext = plaintext[:len(ciphertext)]
- m2.cipher_ctx_free(context)
- self.IV = ciphertext[-self.block_size:]
- return plaintext
« no previous file with comments | « third_party/tlslite/tlslite/utils/OpenSSL_RSAKey.py ('k') | third_party/tlslite/tlslite/utils/PyCrypto_AES.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698