File size: 149 Bytes
2ecc4a7
 
 
 
 
1
2
3
4
5
6
import hashlib

def calculate_hash(text: str) -> str:
    """Calculate SHA-256 hash of text."""
    return hashlib.sha256(text.encode()).hexdigest()