hash-calculator
Installation
SKILL.md
Hash Calculator
Calculate cryptographic hash values for text strings and files. Supports multiple algorithms, file verification, and batch processing.
Quick Start
from scripts.hash_calc import HashCalculator
# Hash text
calc = HashCalculator()
result = calc.hash_text("Hello, World!")
print(result['sha256'])
# Hash file
result = calc.hash_file("document.pdf")
print(result['md5'])