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

Unified Diff: third_party/tlslite/tlslite/utils/Cryptlib_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
« no previous file with comments | « third_party/tlslite/tlslite/utils/ASN1Parser.py ('k') | third_party/tlslite/tlslite/utils/Cryptlib_RC4.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/tlslite/tlslite/utils/Cryptlib_AES.py
diff --git a/third_party/tlslite/tlslite/utils/Cryptlib_AES.py b/third_party/tlslite/tlslite/utils/Cryptlib_AES.py
deleted file mode 100644
index 9e101fc626d15cdb207584f08e70c48bfdd19ac6..0000000000000000000000000000000000000000
--- a/third_party/tlslite/tlslite/utils/Cryptlib_AES.py
+++ /dev/null
@@ -1,34 +0,0 @@
-"""Cryptlib AES implementation."""
-
-from cryptomath import *
-from AES import *
-
-if cryptlibpyLoaded:
-
- def new(key, mode, IV):
- return Cryptlib_AES(key, mode, IV)
-
- class Cryptlib_AES(AES):
-
- def __init__(self, key, mode, IV):
- AES.__init__(self, key, mode, IV, "cryptlib")
- self.context = cryptlib_py.cryptCreateContext(cryptlib_py.CRYPT_UNUSED, cryptlib_py.CRYPT_ALGO_AES)
- cryptlib_py.cryptSetAttribute(self.context, cryptlib_py.CRYPT_CTXINFO_MODE, cryptlib_py.CRYPT_MODE_CBC)
- cryptlib_py.cryptSetAttribute(self.context, cryptlib_py.CRYPT_CTXINFO_KEYSIZE, len(key))
- cryptlib_py.cryptSetAttributeString(self.context, cryptlib_py.CRYPT_CTXINFO_KEY, key)
- cryptlib_py.cryptSetAttributeString(self.context, cryptlib_py.CRYPT_CTXINFO_IV, IV)
-
- def __del__(self):
- cryptlib_py.cryptDestroyContext(self.context)
-
- def encrypt(self, plaintext):
- AES.encrypt(self, plaintext)
- bytes = stringToBytes(plaintext)
- cryptlib_py.cryptEncrypt(self.context, bytes)
- return bytesToString(bytes)
-
- def decrypt(self, ciphertext):
- AES.decrypt(self, ciphertext)
- bytes = stringToBytes(ciphertext)
- cryptlib_py.cryptDecrypt(self.context, bytes)
- return bytesToString(bytes)
« no previous file with comments | « third_party/tlslite/tlslite/utils/ASN1Parser.py ('k') | third_party/tlslite/tlslite/utils/Cryptlib_RC4.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698