python3 - <<'PY'
from hashlib import sha256
from pathlib import Path
for name in ("customer-copy-policy-v1.md", "customer-copy-policy-v2.md"):
    path = Path("sources") / name
    print(name, sha256(path.read_bytes()).hexdigest())
PY
