Skip to content

Commit c2c38da

Browse files
committed
Replace custom Counter object with a proper call to pycryptodome's Counter dict
1 parent b3af499 commit c2c38da

File tree

3 files changed

+9
-30
lines changed

3 files changed

+9
-30
lines changed

src/potr/compatcrypto/pycrypto.py

+6-27
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import crypto as Crypto
2222

2323
from Crypto import Cipher
24+
from Crypto.Util import Counter
2425
from Crypto.Hash import SHA256 as _SHA256
2526
from Crypto.Hash import SHA as _SHA1
2627
from Crypto.Hash import HMAC as _HMAC
@@ -45,36 +46,14 @@ def SHA256HMAC(key, data):
4546

4647
def AESCTR(key, counter=0):
4748
if isinstance(counter, Number):
48-
counter = Counter(counter)
49-
if not isinstance(counter, Counter):
49+
counter = Counter.new(nbits=64, prefix=long_to_bytes(counter, 8), initial_value=0)
50+
# in pycrypto Counter used to be an object,
51+
# in pycryptodome it's now only a dict.
52+
# This tries to validate its "type" so we don't feed anything as a counter
53+
if set(counter) != set(Counter.new(64)):
5054
raise TypeError
5155
return Cipher.AES.new(key, Cipher.AES.MODE_CTR, counter=counter)
5256

53-
class Counter(object):
54-
def __init__(self, prefix):
55-
self.prefix = prefix
56-
self.val = 0
57-
58-
def inc(self):
59-
self.prefix += 1
60-
self.val = 0
61-
62-
def __setattr__(self, attr, val):
63-
if attr == 'prefix':
64-
self.val = 0
65-
super(Counter, self).__setattr__(attr, val)
66-
67-
def __repr__(self):
68-
return '<Counter(p={p!r},v={v!r})>'.format(p=self.prefix, v=self.val)
69-
70-
def byteprefix(self):
71-
return long_to_bytes(self.prefix, 8)
72-
73-
def __call__(self):
74-
bytesuffix = long_to_bytes(self.val, 8)
75-
self.val += 1
76-
return self.byteprefix() + bytesuffix
77-
7857
@common.registerkeytype
7958
class DSAKey(common.PK):
8059
keyType = 0x0000

src/potr/crypt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
from potr.compatcrypto import SHA256, SHA1, SHA1HMAC, SHA256HMAC, \
26-
Counter, AESCTR, PK, getrandbits, randrange
26+
AESCTR, PK, getrandbits, randrange
2727
from potr.utils import bytes_to_long, long_to_bytes, pack_mpi, read_mpi
2828
from potr import proto
2929

tests/test_compatcrypto.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def test_AESCTR_counter_counter(self):
6464
key = potr.utils.long_to_bytes(
6565
potr.compatcrypto.getrandbits(128), 16)
6666

67-
aes_encrypter = potr.compatcrypto.AESCTR(key, potr.compatcrypto.Counter(2013))
67+
aes_encrypter = potr.compatcrypto.AESCTR(key, 2013)
6868
ciphertext = aes_encrypter.encrypt(b'setec astronomy')
6969

70-
aes_decrypter = potr.compatcrypto.AESCTR(key, potr.compatcrypto.Counter(2013))
70+
aes_decrypter = potr.compatcrypto.AESCTR(key, 2013)
7171
self.assertEqual(aes_decrypter.decrypt(ciphertext), b'setec astronomy')
7272

7373
def test_getrandbits(self):

0 commit comments

Comments
 (0)