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

Unified Diff: third_party/tlslite/tlslite/utils/Python_AES.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/Python_AES.py
diff --git a/third_party/tlslite/tlslite/utils/Python_AES.py b/third_party/tlslite/tlslite/utils/Python_AES.py
deleted file mode 100644
index 657152f8921d60b559150fda35c72a3b83c4246b..0000000000000000000000000000000000000000
--- a/third_party/tlslite/tlslite/utils/Python_AES.py
+++ /dev/null
@@ -1,68 +0,0 @@
-"""Pure-Python AES implementation."""
-
-from cryptomath import *
-
-from AES import *
-from rijndael import rijndael
-
-def new(key, mode, IV):
- return Python_AES(key, mode, IV)
-
-class Python_AES(AES):
- def __init__(self, key, mode, IV):
- AES.__init__(self, key, mode, IV, "python")
- self.rijndael = rijndael(key, 16)
- self.IV = IV
-
- def encrypt(self, plaintext):
- AES.encrypt(self, plaintext)
-
- plaintextBytes = stringToBytes(plaintext)
- chainBytes = stringToBytes(self.IV)
-
- #CBC Mode: For each block...
- for x in range(len(plaintextBytes)/16):
-
- #XOR with the chaining block
- blockBytes = plaintextBytes[x*16 : (x*16)+16]
- for y in range(16):
- blockBytes[y] ^= chainBytes[y]
- blockString = bytesToString(blockBytes)
-
- #Encrypt it
- encryptedBytes = stringToBytes(self.rijndael.encrypt(blockString))
-
- #Overwrite the input with the output
- for y in range(16):
- plaintextBytes[(x*16)+y] = encryptedBytes[y]
-
- #Set the next chaining block
- chainBytes = encryptedBytes
-
- self.IV = bytesToString(chainBytes)
- return bytesToString(plaintextBytes)
-
- def decrypt(self, ciphertext):
- AES.decrypt(self, ciphertext)
-
- ciphertextBytes = stringToBytes(ciphertext)
- chainBytes = stringToBytes(self.IV)
-
- #CBC Mode: For each block...
- for x in range(len(ciphertextBytes)/16):
-
- #Decrypt it
- blockBytes = ciphertextBytes[x*16 : (x*16)+16]
- blockString = bytesToString(blockBytes)
- decryptedBytes = stringToBytes(self.rijndael.decrypt(blockString))
-
- #XOR with the chaining block and overwrite the input with output
- for y in range(16):
- decryptedBytes[y] ^= chainBytes[y]
- ciphertextBytes[(x*16)+y] = decryptedBytes[y]
-
- #Set the next chaining block
- chainBytes = blockBytes
-
- self.IV = bytesToString(chainBytes)
- return bytesToString(ciphertextBytes)
« no previous file with comments | « third_party/tlslite/tlslite/utils/PyCrypto_TripleDES.py ('k') | third_party/tlslite/tlslite/utils/Python_RC4.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698