We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b799917 commit ced67c4Copy full SHA for ced67c4
glueops/checksum_tools.py
@@ -16,5 +16,5 @@ def compute_sha224(input_string: str) -> str:
16
"""Compute SHA224 checksum for a given string and return it in hexadecimal format."""
17
18
sha224_hash = hashlib.sha224()
19
- sha224_hash.update(text.encode('utf-8'))
+ sha224_hash.update(input_string.encode('utf-8'))
20
return sha224_hash.hexdigest()
0 commit comments