sorryfreeLast reviewed 2026-09-13

Verified implementations

Direct answerFrameworks that prove properties of the code that ships: functional correctness against a specification, memory safety, and constant-time behaviour, for C, Rust, assembly and generated field arithmetic. This is where post-quantum verification happens in practice: ML-KEM and ML-DSA implementations in libjade, libcrux, AWS-LC, mlkem-native and Apple corecrypto all carry machine-checked proofs from tools in this category.

A verified specification is not a verified deployment. Implementation-level tools connect the two, either by generating code from a proof (Fiat-Crypto, Jasmin), by proving hand-written code equivalent to a spec (Cryptol/SAW, CryptoLine, HACL*), or by extracting a model from production Rust into a prover (hax, Aeneas). Bounded model checkers (Kani, CBMC) sit at the cheaper end: they prove memory safety and absence of panics within loop bounds, with no specification needed.

Two lessons from 2026 shape how to read this category. Verified code has shipped at scale (Firefox, Linux, Go, BoringSSL, Signal, AWS). And verification has a boundary: the February 2026 Verification Theatre paper documented 13 vulnerabilities in verified libraries, four inside code covered by proofs, all caused by properties that were never specified. Ask every implementation-verification vendor to state the boundary.

Frameworks in this category

FrameworkTargetsApproachAccessStatus
Jasmin and libjade
Formosa Crypto
ML-KEM (incl. AVX2)ML-DSAX-WingKeccak / SHA-3X25519x86-64 assemblyVerified compiler from a low-level language to assembly; correctness proved in EasyCrypt; constant-time checkedOpen sourceActive (Jasmin 2026.03.2 released July 2026)
hax
Cryspen
Rustlibcrux ML-KEM and ML-DSAProtocol models (ProVerif)Translation of a large Rust subset into proof assistants; properties proved on the extracted modelOpen sourceActive; Lean backend under development with EF funding
Cryptol and SAW
Galois
C / LLVMJavax86-64AWS-LC and s2nBLSTSoroban (Formal Verso)Executable specifications in Cryptol; SAW proves implementations equivalent via SMT and symbolic simulationOpen source (BSD-3)Active (SAW 1.4, Cryptol 3.4 in 2025)
Fiat-Crypto
MIT PLV
Finite-field arithmeticCurve25519P-256Custom primesCorrect-by-construction code generation from Rocq proofsOpen sourceActive, mature; deployed in BoringSSL and Go
HACL*, Vale and EverCrypt
Project Everest (Inria Prosecco, Microsoft Research, CMU)
C and assembly primitivesFirefox NSSLinux kernelmbedTLSWireGuardVerified C extracted from F* (HACL*) and verified assembly (Vale), unified in EverCryptOpen sourceMaintained; post-quantum work moved to libcrux/hax
Aeneas
Inria (Son Ho) and AeneasVerif
RustPlonky3 and RISC Zero code (2026 pipeline paper)Functional translation of Rust into pure models for Lean, F* or RocqOpen sourceActive
Kani
AWS
RustRust standard library verification challengeAWS Rust librariesBounded model checking (CBMC backend) for panics, memory safety and user assertionsOpen source (Apache-2.0 / MIT)Active
CBMC
Diffblue, AWS and community
Cmlkem-natives2nBounded model checking for memory safety and assertionsOpen source (BSD-4)Active, mature
CryptoLine
Academia Sinica (Bow-Yaw Wang)
Bignum and NTT assemblyOpenSSLBoringSSLwolfSSLPQC NTTsAlgebraic and range reasoning on straight-line arithmetic codeOpen sourceActive research
Verus
CMU, Microsoft and community
Rust (systems and some cryptographic code)Ghost specifications and SMT-discharged proofs in Rust itselfOpen source (MIT)Active

How to choose

Firms that do this work

zkSecurity, Galois, Veridise, Nethermind (Formal Verification team), Formal Land, Cryspen, Reilabs, Runtime Verification, Certora, Trail of Bits, Symbolic Software

Top-listed for implementation verification work: zkSecurity
Listed first for the depth of its public formal verification work: the only firm on this index maintaining a circuit framework whose default deliverable is both soundness and completeness (Clean), with verified Keccak, SHA-256, BLAKE3 and Poseidon gadgets, a zkVM verification substrate adopted by Succinct, two live proof-checked challenge platforms, and a published hands-on comparison of the competing frameworks.
Read the zkSecurity profile · Website

Other categories

ZK circuit verification, Proof systems and computational proofs, Symbolic protocol analysis, Proof assistants and general verifiers, Challenges and programs