
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@signforge/verify
Advanced tools
Verify SignForge-signed PDFs and proof documents offline — W3C VC, ECDSA P-256, Merkle proofs, JAdES JWS
Verify SignForge-signed documents offline. No account needed, no internet needed for cryptographic verification.
Most e-signature platforms lock your proof inside their ecosystem. If the vendor disappears, your proof disappears. SignForge takes a different approach: every signed document contains a complete, self-verifying cryptographic proof bundle using open standards.
This package lets anyone verify a SignForge-signed document — developers, auditors, legal teams, or even AI agents — without needing a SignForge account or any internet connection.
"Don't trust us. Verify yourself." — SignForge Trust Architecture
Every SignForge-signed document contains a cryptographic proof bundle. This package verifies:
npm install @signforge/verify
Zero runtime dependencies. Uses Node.js built-in Web Crypto API (Node 18+).
import { SignForgeVerifier } from '@signforge/verify';
const verifier = new SignForgeVerifier();
// Verify a .proof.html file
const html = fs.readFileSync('document.proof.html', 'utf-8');
const result = await verifier.verifyFromHtml(html);
console.log(result.valid); // true
// Verify a signed PDF
const pdf = fs.readFileSync('document-signed.pdf');
const result = await verifier.verifyFromPdf(pdf);
console.log(result.valid); // true
// Verify a proof bundle directly
const bundle = JSON.parse(fs.readFileSync('proof-bundle.json', 'utf-8'));
const result = await verifier.verify(bundle);
# Verify a proof document
npx @signforge/verify document.proof.html
# Verify a signed PDF
npx @signforge/verify document-signed.pdf
# JSON output (for scripting / CI pipelines)
npx @signforge/verify document-signed.pdf --json
Example output:
============================================================
SignForge Proof Verifier
============================================================
File: document.proof.html
Format: v1.0
✓ Vc Signature: ECDSA P-256 DataIntegrityProof verified
✓ Jades Jws: ES256 JAdES JWS verified
✓ Merkle Proof: Merkle inclusion verified (tree size: 23)
• Timestamp: RFC 3161 timestamp from DigiCert at 2026-04-15T11:56:56Z
✓ Signer Identities: 1 signer identity VC(s) verified
• Did Snapshot: DID document captured at 2026-04-15T11:56:56Z
✅ DOCUMENT VERIFIED
============================================================
SignForgeVerifierextractFromHtml(html: string): ProofBundle | nullExtract the proof bundle from a .proof.html string.
extractFromPdf(pdfBuffer: Buffer): ProofBundle | nullExtract the proof bundle from a signed PDF buffer. Works with uncompressed PDF streams.
verify(bundle: ProofBundle): Promise<VerifyResult>Run all verification checks on a proof bundle.
verifyFromHtml(html: string): Promise<VerifyResult>Convenience: extract + verify in one call.
verifyFromPdf(pdfBuffer: Buffer): Promise<VerifyResult>Convenience: extract from PDF + verify in one call.
VerifyResultinterface VerifyResult {
checks: Record<string, CheckResult>;
valid: boolean;
error?: string;
formatVersion?: string;
}
interface CheckResult {
status: string; // 'pass' | 'FAIL' | 'present' | 'skip' | 'error'
detail?: string;
}
SignForge embeds a W3C Verifiable Credential and supporting cryptographic proofs inside every signed document. This verifier:
All verification happens locally — no network requests, no SignForge servers involved.
Learn more:
MIT
FAQs
Verify SignForge-signed PDFs and proof documents offline — W3C VC, ECDSA P-256, Merkle proofs, JAdES JWS
We found that @signforge/verify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.