aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-16 09:15:13 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-16 09:15:13 -0800
commit62aefffb1396190930074bf04c91459d1536bd0e (patch)
tree620091527c6d02aabca7cc7dcf48f0794cb73205
parent5175e4e6394ade40e38dc00b8e1e14a2877aafe4 (diff)
downloadcryptography-62aefffb1396190930074bf04c91459d1536bd0e.tar.gz
cryptography-62aefffb1396190930074bf04c91459d1536bd0e.tar.bz2
cryptography-62aefffb1396190930074bf04c91459d1536bd0e.zip
So the tests don't all explode
-rw-r--r--cryptography/hazmat/primitives/ciphers/modes.py4
1 files changed, 4 insertions, 0 deletions
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