Skip to content
This repository was archived by the owner on May 9, 2020. It is now read-only.

Commit 41ca735

Browse files
committed
AES256Cipher inherits from object
1 parent e2cf2c1 commit 41ca735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chef/aes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class EVP_CIPHER_CTX(Structure):
8686
("final", c_ubyte * EVP_MAX_BLOCK_LENGTH) ]
8787

8888

89-
class AES256Cipher():
89+
class AES256Cipher(object):
9090
def __init__(self, key, iv, salt='12345678'):
9191
self.key_data = create_string_buffer(key)
9292
self.iv = create_string_buffer(iv)

0 commit comments

Comments
 (0)