Skip to content

Commit 4e69c1e

Browse files
committed
Added "key_size" and "block_size" variables
1 parent 053455c commit 4e69c1e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

camellia/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@ def try_compiler(cc, inf, outf):
142142
def new(*args, **kwargs):
143143
return CamelliaCipher(*args, **kwargs)
144144

145+
key_size = (16, 24, 32)
146+
block_size = 16
147+
145148
class CamelliaCipher(object):
146149
block_size = 16*8
147150

0 commit comments

Comments
 (0)