Kaellabs

Sentry SDK

A small, audited library of post-quantum primitives with idiomatic bindings for Rust, Go, and TypeScript.

Install

npm install @kaellabs/sentry

Your first signature

import { mlDsa } from "@kaellabs/sentry";

const keys = await mlDsa.generate();
const sig = await mlDsa.sign(keys.secret, message);
const ok = await mlDsa.verify(keys.public, message, sig);

Hybrid mode

Hybrid mode wraps a classical signature alongside a post-quantum one so verification succeeds as long as either remains unbroken. This is the recommended default through the migration window.

Talk to us about a deployment