mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
d470848b29
* Clean up base modules * Clean up forms modules * Clean up templatetags modules * Replace custom simplify_decimal filter with floatformat * Misc cleanup * Merge ReturnURLForm into ConfirmationForm * Clean up import statements for utilities.forms * Fix field class references in docs
14 lines
232 B
Python
14 lines
232 B
Python
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())
|