From 62aefffb1396190930074bf04c91459d1536bd0e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 16 Dec 2013 09:15:13 -0800 Subject: So the tests don't all explode --- cryptography/hazmat/primitives/ciphers/modes.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cryptography/hazmat/primitives/ciphers/modes.py b/cryptography/hazmat/primitives/ciphers/modes.py index 63a69ac4..51a1047c 100644 --- a/cryptography/hazmat/primitives/ciphers/modes.py +++ b/cryptography/hazmat/primitives/ciphers/modes.py @@ -94,3 +94,7 @@ class GCM(object): def __init__(self, initialization_vector, tag=None): self.initialization_vector = initialization_vector self.tag = tag + + def validate_for_algorithm(self, algorithm): + # TODO: figure out what this should do + pass -- cgit v1.2.3