anton-karlovskiy / webauthn-halo2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webauthn-halo2

Proving and verifying WebAuthn with Halo2, specifically the ES256 algorithm variant with the P-256 curve, which is present on Apple's Face/Touch ID devices, Intel secure enclaves, Yubikey authenticators, and more.

File Structure

The repository is structured into three main directories:

  • halo2-circuits/, which contains the Halo2 circuit for P-256 ECDSA, ES256, and WebAuthn
  • proving-server/, which is the Rust webserver for generating proofs
  • contracts/, which includes the on-chain verifier and associated ERC-4337 contracts

Proving Server

The proving server API has a few endpoints for proving, verifying, and other relevant functions.

  • POST /setup - set up proving / verifying keys and srs params
  • POST /prove - generate a proof using the the Blake2b transcript
  • POST /prove_evm - generate a proof using the the EVM transcript
  • POST /verify - generate a proof using the the Blake2b transcript
  • POST /verify_evm - generate a proof using the the EVM transcript
  • POST /generate_evm_verifier - generate an EVM verifier and save to raw bytecode and Solidity

Testing & Benchmarks

# Test P-256 circuit correctness
cd halo2-circuits/
cargo test -- --nocapture test_secp256r1_ecdsa
# Benchmarks for P-256 proving and verification
cd halo2-circuits/
cargo test -- --nocapture bench_secp256r1_ecdsa
# Benchmarks for sending a userOp via ERC-4337
cd contracts/
forge test --gas-report

Benchmarks for a 16GB Macbook Pro with an M1 Pro chip are available at ecdsa_bench.csv.

P-256 Wallet

The primary application of this project is to implement a ERC-4337 "smart contract wallet" that verifies WebAuthn signatures. No wallet extensions or wallet apps are needed – users could send stablecoins, mint POAPs, or sign any other transactions purely within their browser. This is especially powerful for mobile devices with fingerprint / facial scans, where users can sign transactions within a mobile browser like Safari or Chrome.

image

About


Languages

Language:Solidity 73.7%Language:Yul 10.9%Language:Rust 9.9%Language:TypeScript 4.0%Language:CSS 1.4%Language:JavaScript 0.1%