Synor Blockchain — Quantum-secure decentralized cloud computing platform
Find a file
Gulshan Yadav 9414ef5d99 feat(crypto): add SPHINCS+ and FALCON post-quantum algorithms
Phase 13 Milestone 2 - Enhanced Quantum Cryptography:

SPHINCS+ (FIPS 205 / SLH-DSA):
- Hash-based signatures as backup if lattice schemes are compromised
- Three variants: 128s (~7.8KB), 192s (~16KB), 256s (~30KB)
- Relies only on hash function security (conservative choice)
- SphincsKeypair, SphincsPublicKey, SphincsSecretKey, SphincsSignature

FALCON (FIPS 206 / FN-DSA):
- Compact lattice signatures for bandwidth-constrained devices
- FALCON-512: 128-bit security, ~690 byte signatures
- FALCON-1024: 256-bit security, ~1,330 byte signatures
- ~79% smaller than Dilithium3 signatures
- Ideal for mobile wallets and L2 batch transactions

Algorithm Comparison:
| Algorithm | Security | Sig Size | Use Case |
|-----------|----------|----------|----------|
| Ed25519 | 128-bit | 64 B | Classical (fast) |
| Dilithium3 | 192-bit | 3,293 B | Default PQ |
| FALCON-512 | 128-bit | 690 B | Mobile/IoT |
| SPHINCS+-128s | 128-bit | 7,856 B | Backup |

All 40 unit tests + 5 doc tests passing.
2026-01-19 09:52:16 +05:30
.cargo feat(crypto-wasm): add deterministic Dilithium3 key derivation and hybrid signatures 2026-01-10 05:34:26 +05:30
.github feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
apps feat(wallet): add OS keychain integration with biometric unlock 2026-01-11 17:31:21 +05:30
contracts Initial commit: Synor blockchain monorepo 2026-01-08 05:22:17 +05:30
crates feat(crypto): add SPHINCS+ and FALCON post-quantum algorithms 2026-01-19 09:52:16 +05:30
docker feat(compute): integrate synor-compute with VM and hosting layers 2026-01-11 14:05:45 +05:30
docs feat(dag): implement DAGKnight adaptive consensus protocol 2026-01-19 09:46:50 +05:30
formal feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
monitoring feat: Desktop wallet, gas estimator UI, and 30-day monitoring stack 2026-01-10 04:38:09 +05:30
scripts feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
sdk docs(sdk): add comprehensive documentation for all 12 SDKs 2026-01-11 18:05:03 +05:30
.gitignore chore: add .vite to gitignore 2026-01-08 05:22:24 +05:30
Cargo.toml feat(crypto): add SPHINCS+ and FALCON post-quantum algorithms 2026-01-19 09:52:16 +05:30
CLAUDE.md feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
deny.toml feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
docker-compose.compute.yml feat(compute): integrate synor-compute with VM and hosting layers 2026-01-11 14:05:45 +05:30
docker-compose.hosting.yml feat(hosting): add hosting gateway server with Docker deployment 2026-01-10 12:45:26 +05:30
docker-compose.storage.yml feat(storage): add Synor Storage L2 decentralized storage layer 2026-01-10 11:42:03 +05:30
docker-compose.testnet.yml feat: add synor.cc landing page and zero-cost deployment plan 2026-01-10 09:26:21 +05:30
docker-compose.wasm.yml feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
Dockerfile feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
Dockerfile.explorer a 2026-01-08 09:24:26 +05:30
Dockerfile.faucet a 2026-01-08 09:24:26 +05:30
Dockerfile.security feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
Dockerfile.wasm feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30
SECURITY.md feat: Phase 7 critical tasks - security, formal verification, WASM crypto 2026-01-10 01:40:03 +05:30