Post-quantum cryptographic infrastructure for the next era of security. ML-KEM-768, ML-DSA-65, SLH-DSA, and Ed25519/X25519 hybrid mode — all in a simple TypeScript API. No configuration. No external dependencies for PQC operations. Works in Node.js, Deno, Bun, and browsers.
import { crypto } from '@brivora/crypto';
// Create a post-quantum identity
const alice = await crypto.createIdentity();
const bob = await crypto.createIdentity();
// Encrypt for Bob
const encrypted = await crypto.encrypt('secret message', bob.publicKey);
const decrypted = await crypto.decrypt(encrypted, bob.privateKey);
// Sign as Alice
const signed = await crypto.sign('important data', alice.privateKey);
const { valid } = await crypto.verify(signed, alice.publicKey);
// valid === true Cryptographic governance proofs for AI compliance. Wrap any AI call with regulatory governance rules and get a PQC-signed Merkle root proving compliance. 5-stage governance pipeline: Define, Observe, Execute, Evaluate, Prove. Independent verification — no API, no account, just math.
import { verify } from '@brivora/verify';
// Wrap any AI call with governance
const result = await verify.govern(
() => anthropic.messages.create({
model: 'claude-sonnet-4-6',
messages: [{ role: 'user', content: 'Analyze this loan application' }]
}),
{ governance: 'eu-ai-act', audit: true }
);
console.log(result.proof); // PQC-signed Merkle root
console.log(result.valid); // true
console.log(result.score); // Fidelity score 0.0-1.0
console.log(result.report); // Compliance report European Union
Full EU AI Act compliance. Articles 9-15, 50, 52, 72-73. Prohibited practices, risk management, data governance, transparency, human oversight, robustness, post-market monitoring.
Enforcement: 2026-08-02
United States
AICPA Trust Services Criteria applied to AI systems. Access control, processing integrity, data protection, operational monitoring.
United States
HIPAA compliance for AI systems processing Protected Health Information. PHI detection, minimum necessary, BAA verification, encryption, breach detection.
United States
NIST AI RMF 1.0 implementation. Govern, Map, Measure, Manage functions.
California, United States
California Consumer Privacy Act automated decision-making technology rules. Significant decisions, opt-out rights, access requests.
Colorado, United States
Colorado SB 24-205. High-risk AI system requirements for consequential decisions in employment, education, finance, healthcare, housing, insurance, legal.
Enforcement: 2026-02-01
Texas, United States
Texas Responsible AI Governance Act. HB 149 requirements for high-risk AI systems.
International
AI management system standard. Risk-based approach to responsible AI development and deployment.
International
Information security management for AI systems. Controls for AI-specific security risks.
New York City, United States
Automated employment decision tools. Bias audit requirements for AI used in hiring and promotion.
Enforcement: 2023-07-05
New York, United States
New York Department of Financial Services AI guidance for insurance and cybersecurity.
United States
Securities and Exchange Commission AI-related frameworks and guidance.
United States
FDA guidance for AI and machine learning in medical devices.
South Korea
South Korea AI Basic Act requirements for high-risk AI systems.
Singapore
Singapore Model AI Governance Framework and AI Verify requirements.
China
China AI content labeling and watermarking requirements.
China
China cybersecurity law requirements for AI systems.
Japan
Japan AI governance and promotion framework requirements.
International (OECD)
OECD Principles on Artificial Intelligence. International governance standards.
California, United States
California AI transparency requirements for automated systems.
Canada
Artificial Intelligence and Data Act. Canadian federal AI governance requirements.
PQC-signed software attestations. Cross-chain verifiable.
Verifiable audit trail system with cryptographic chain of custody.
Command-line interface for generating and verifying proofs.
PQC-encrypted cross-device sync. Your data, your keys, your devices.
AI-native operating system. Run anything, trust everything.
Sovereign compute devices. Plug-and-play privacy.
GrapheneOS-based mobile with full Brivora stack.