
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
@peac/http-signatures
Advanced tools
RFC 9421 HTTP Message Signatures parsing and verification. Runtime-neutral with no DOM dependencies.
pnpm add @peac/http-signatures
@peac/http-signatures implements the RFC 9421 HTTP Message Signatures standard for parsing structured signature headers, building canonical signature base strings, and verifying Ed25519 signatures. It is runtime-neutral and works in Node.js, Deno, and browser environments with WebCrypto support.
import { parseSignature, verifySignature, createWebCryptoVerifier } from '@peac/http-signatures';
const parsed = parseSignature(signatureHeader, signatureInputHeader);
const result = await verifySignature({
signature: parsed,
request: { method: 'GET', url: '/resource', headers },
verifier: createWebCryptoVerifier(publicKey),
});
console.log(result.verified); // true or false
import { parseSignatureInput } from '@peac/http-signatures';
const params = parseSignatureInput(
'sig1=("@method" "@target-uri" "content-type");created=1704067200;keyid="my-key"'
);
console.log(params.sig1.keyid); // 'my-key'
console.log(params.sig1.created); // 1704067200
import { buildSignatureBase, signatureBaseToBytes } from '@peac/http-signatures';
const base = buildSignatureBase({
components: ['@method', '@target-uri', 'content-type'],
request: { method: 'POST', url: '/api', headers },
params: { created: Math.floor(Date.now() / 1000), keyid: 'my-key' },
});
const bytes = signatureBaseToBytes(base);
@peac/jwks-cache: JWKS-based key resolution for signature verification@peac/server (Layer 5): Verification server uses HTTP signatures for request authentication@peac/middleware-express: Express middleware for signature verificationIf you are building an AI agent or MCP server that needs evidence receipts:
@peac/mcp-server for a ready-to-use MCP tool server@peac/protocol for programmatic receipt issuance and verificationApache-2.0
PEAC Protocol is an open source project stewarded by Originary and community contributors.
FAQs
RFC 9421 HTTP Message Signatures parsing and verification
The npm package @peac/http-signatures receives a total of 14 weekly downloads. As such, @peac/http-signatures popularity was classified as not popular.
We found that @peac/http-signatures 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.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.