Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 551 Bytes

File metadata and controls

29 lines (20 loc) · 551 Bytes

hellbox-dsig

A hellbox job that works with digital signature tables.

Usage

InsertDummyDsig adds a valid digital signature table to an OTF/TTF font file.

from hellbox import Hellbox
from hellbox.jobs.dsig import InsertDummyDsig

with Hellbox("build") as task:
    source = task.read("./source/*.otf")
    source >> InsertDummyDsig() >> task.write("./build/otf")

Installation

hell add hellbox-dsig

Development

uv sync
uv run pytest