1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Remove the sha256_hash() utility function

This commit is contained in:
Jeremy Stretch
2024-03-21 10:15:59 -04:00
parent 19bb808936
commit d924eaf4da
2 changed files with 3 additions and 15 deletions

View File

@@ -1,13 +0,0 @@
import hashlib
__all__ = (
'sha256_hash',
)
def sha256_hash(filepath):
"""
Return the SHA256 hash of the file at the specified path.
"""
with open(filepath, 'rb') as f:
return hashlib.sha256(f.read())