API v2.0.0
⚛ POST-QUANTUM REST API v2.0 — ML-DSA-65 WASM

World's First Post-Quantum
Hybrid Signature API

Integrate ML-DSA-65 (FIPS 204) + EC-DSA hybrid signatures into any application with simple HTTP requests.

https://api.faihoplo.com/v2/
<10μs
Key Lifetime
FIPS 204
Compliance
ML-DSA-65
Algorithm
2
Patents
NIST L3
Security Level
— API Endpoints
GET /health Check server status
Request
GET https://api.faihoplo.com/v2/health
Response
{
  "status": "ok",
  "service": "Faihoplo QRYPTA API",
  "version": "1.0.0"
}
▶ Try it live
POST /sign Generate hybrid signature
Request
POST https://api.faihoplo.com/v2/sign
Content-Type: application/json

{
  "message": "Your message to sign"
}
Response
{
  "status": "success",
  "message": "Your message to sign",
  "signature": "a3f8b2c1d4e5...",
  "timestamp": "1752271200.0",
  "algorithm": "ML-DSA-65 + EC-DSA Hybrid"
}
POST /verify Verify hybrid signature
Request
POST https://api.faihoplo.com/v2/verify
Content-Type: application/json

{
  "message": "Your message",
  "signature": "a3f8b2c1d4e5..."
}
Response
{
  "status": "success",
  "verified": true,
  "algorithm": "ML-DSA-65 + EC-DSA Hybrid"
}
Live Test — GET /health

Check if API server is running:

// Result will appear here...
Live Test — POST /sign

Generate a Post-Quantum hybrid signature:

// Result will appear here...
Live Test — POST /verify

After signing, fields are auto-filled. Or enter manually:

// Sign a message first, then verify here...
— Technology

ML-DSA-65 (FIPS 204)

NIST post-quantum standard. Signature: 3309 bytes. Security Level 3.

🔐

Hybrid Signature

EC-DSA + ML-DSA-65 simultaneously. Classical + quantum-resistant security.

Ephemeral Keys

Software TEE method. Private key lifetime under 10 microseconds. Never saved to disk.

🎲

Hytak TRNG

True Random Number Generator. Patent 1 by Faihoplo Inc.

🏛

FIPS 204 Compliant

NIST standardized August 2024. White House Executive Order June 2026 ready.

📦

Multiple Formats

C++ SDK, JavaScript/WASM, REST API, MetaMask Snap.

— Available Formats
# npm package
npm install faihoplo-qrypta-snap

# npm package URL
https://www.npmjs.com/package/faihoplo-qrypta-snap

# GitHub
https://github.com/htkim580711-cloud/faihoplo-qrypta-snap

# Live Demo
https://faihoplo.com/demo.html