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:
@@ -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())
|
Reference in New Issue
Block a user