21
21
import crypto as Crypto
22
22
23
23
from Crypto import Cipher
24
+ from Crypto .Util import Counter
24
25
from Crypto .Hash import SHA256 as _SHA256
25
26
from Crypto .Hash import SHA as _SHA1
26
27
from Crypto .Hash import HMAC as _HMAC
@@ -45,36 +46,14 @@ def SHA256HMAC(key, data):
45
46
46
47
def AESCTR (key , counter = 0 ):
47
48
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 )):
50
54
raise TypeError
51
55
return Cipher .AES .new (key , Cipher .AES .MODE_CTR , counter = counter )
52
56
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
-
78
57
@common .registerkeytype
79
58
class DSAKey (common .PK ):
80
59
keyType = 0x0000
0 commit comments