From b2ac726eeb9c1ae56b346a61cbf08372a6ed56f4 Mon Sep 17 00:00:00 2001 From: go-outside-helper <138340846+go-outside-helper@users.noreply.github.com> Date: Thu, 14 Mar 2024 17:10:57 +0100 Subject: [PATCH] Update checksum_file.py --- Cryptography/Hash_Functions/MD5/checksum_file.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cryptography/Hash_Functions/MD5/checksum_file.py b/Cryptography/Hash_Functions/MD5/checksum_file.py index 0b9bad0..4cf1d11 100644 --- a/Cryptography/Hash_Functions/MD5/checksum_file.py +++ b/Cryptography/Hash_Functions/MD5/checksum_file.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -__author__ = "bt3" +__author__ = "Mia Stein" ''' Calculate the MD5 checksum of a file. @@ -18,4 +18,4 @@ def get_file_checksum(filename): if len(chunk) == 0: break h.update(chunk) - return h.hexdigest() \ No newline at end of file + return h.hexdigest()