Add sha224/sha256 as supported hash algorithms.
[cumulus.git] / python / cumulus / __init__.py
index 3f6b6f7..2ac9be4 100644 (file)
@@ -57,6 +57,7 @@ class Struct:
 
 CHECKSUM_ALGORITHMS = {
     'sha1': hashlib.sha1,
+    'sha224': hashlib.sha224,
     'sha256': hashlib.sha256,
 }