A simple file hash calculator supporting multiple algorithms
Project description
HashGenerator 🔒
HashGenerator is a simple Python package to calculate the hash of a file using various hashing algorithms.
Installation ⚙️
To install the package, use pip:
pip install HashGenerator
Usage 🚀
Here's how you can use the HashGenerator
package to calculate file hashes:
from HashGenerator import calculate_hash
# Calculate SHA-256 hash
hash_value = calculate_hash('path/to/your/file.txt', 'sha256')
print(f"SHA-256: {hash_value}")
# Calculate MD5 hash
hash_value = calculate_hash('path/to/your/file.txt', 'md5')
print(f"MD5: {hash_value}")
# Calculate SHA-512 hash
hash_value = calculate_hash('path/to/your/file.txt', 'sha512')
print(f"SHA-512: {hash_value}")
Supported Algorithms 🔐
The following hashing algorithms are supported:
- md5
- sha1
- sha224
- sha256
- sha384
- sha512
Example 💡
Here's an example of how to use the HashGenerator
package:
from HashGenerator import calculate_hash
file_path = 'example.txt'
algorithm = 'sha256'
hash_value = calculate_hash(file_path, algorithm)
print(f"The {algorithm} hash of the file is: {hash_value}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
HashGenerator-1.0.1.tar.gz
(2.3 kB
view details)
File details
Details for the file HashGenerator-1.0.1.tar.gz
.
File metadata
- Download URL: HashGenerator-1.0.1.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e69b9e90782d63d9132e8242e0f0de292b15d4d30e5653e7bc2031621895362 |
|
MD5 | 492d509667a19888c3164ba4e7e300e8 |
|
BLAKE2b-256 | bdae468f1d9423725e9bc02726640141aef7c68ad910422e0c3a163f3906e91d |