Integrate ML-DSA-65 (FIPS 204) + EC-DSA hybrid signatures into any application with simple HTTP requests.
GET https://api.faihoplo.com/v2/health
{
"status": "ok",
"service": "Faihoplo QRYPTA API",
"version": "1.0.0"
}
▶ Try it live
POST https://api.faihoplo.com/v2/sign Content-Type: application/json { "message": "Your message to sign" }
{
"status": "success",
"message": "Your message to sign",
"signature": "a3f8b2c1d4e5...",
"timestamp": "1752271200.0",
"algorithm": "ML-DSA-65 + EC-DSA Hybrid"
}
POST https://api.faihoplo.com/v2/verify Content-Type: application/json { "message": "Your message", "signature": "a3f8b2c1d4e5..." }
{
"status": "success",
"verified": true,
"algorithm": "ML-DSA-65 + EC-DSA Hybrid"
}
Check if API server is running:
Generate a Post-Quantum hybrid signature:
After signing, fields are auto-filled. Or enter manually:
NIST post-quantum standard. Signature: 3309 bytes. Security Level 3.
EC-DSA + ML-DSA-65 simultaneously. Classical + quantum-resistant security.
Software TEE method. Private key lifetime under 10 microseconds. Never saved to disk.
True Random Number Generator. Patent 1 by Faihoplo Inc.
NIST standardized August 2024. White House Executive Order June 2026 ready.
C++ SDK, JavaScript/WASM, REST API, MetaMask Snap.
# 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