fathom.verify_chain¶
fathom.verify_chain(path, public_key, *, expected_head=None, anchor_token=None)
¶
Offline verifier: structure, hash linkage, and every JWS signature.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Chained JSONL log file. |
required |
public_key
|
Ed25519PublicKey | bytes | str | Path
|
Ed25519 public key (object, PEM bytes, or PEM path). |
required |
expected_head
|
str | None
|
Out-of-band mirrored line hash. Verification fails
( |
None
|
anchor_token
|
str | None
|
A checkpoint JWS previously emitted via
:class: |
None
|
All supplied anchors must hold. Never raises on log content; malformed
input is reported via error/error_line.
Source code in src/fathom/chained_log.py
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 | |