diff options
-rw-r--r-- | cryptography/hazmat/primitives/ciphers/modes.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/ciphers/modes.py b/cryptography/hazmat/primitives/ciphers/modes.py index 3d320c25..004a68bf 100644 --- a/cryptography/hazmat/primitives/ciphers/modes.py +++ b/cryptography/hazmat/primitives/ciphers/modes.py @@ -59,9 +59,8 @@ class OFB(object): @utils.register_interface(interfaces.ModeWithInitializationVector) class CFB(object): name = "CFB" - NATIVE_SIZE = object() - def __init__(self, initialization_vector, something=NATIVE_SIZE): + def __init__(self, initialization_vector): self.initialization_vector = initialization_vector def validate_for_algorithm(self, algorithm): |