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

Side by Side Diff: third_party/tlslite/tlslite/utils/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, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 """Abstract class for 3DES."""
2
3 from compat import * #For True
4
5 class TripleDES:
6 def __init__(self, key, mode, IV, implementation):
7 if len(key) != 24:
8 raise ValueError()
9 if mode != 2:
10 raise ValueError()
11 if len(IV) != 8:
12 raise ValueError()
13 self.isBlockCipher = True
14 self.block_size = 8
15 self.implementation = implementation
16 self.name = "3des"
17
18 #CBC-Mode encryption, returns ciphertext
19 #WARNING: *MAY* modify the input as well
20 def encrypt(self, plaintext):
21 assert(len(plaintext) % 8 == 0)
22
23 #CBC-Mode decryption, returns plaintext
24 #WARNING: *MAY* modify the input as well
25 def decrypt(self, ciphertext):
26 assert(len(ciphertext) % 8 == 0)
OLDNEW
« no previous file with comments | « third_party/tlslite/tlslite/utils/RSAKey.py ('k') | third_party/tlslite/tlslite/utils/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698