Industrial-grade dual-stack backend. quantum-safe transport
889
Secure. Scalable. Quantum-Safe.
The Universal PQC Backend is an industrial-grade secure storage and messaging platform designed for the post-quantum era. It leverages CRYSTALS-Dilithium5 for quantum-resistant transport security and AES-256-GCM for encryption-at-rest, ensuring data remains confidential against both classical and future quantum threats.
This project is backed by a formal technical paper detailing the cryptographic implementation and performance benchmarks.
The platform is engineered as a hybrid C++/Python stack, tracking post-quantum transport security with classical symmetric encryption-at-rest.
| Operation | Latency / Throughput |
|---|---|
| PQC mTLS Handshake (Dilithium5) | 41ms |
| Encrypted Store (AES-256-GCM + SQLite) | 93ms |
| AES-256-GCM Throughput | ~2.7 GB/s |
Full benchmarking methodology and results are available in the published paperโ .
The entire system is containerized. Building the image compiles the full custom cryptographic toolchain.
To run the server instance manually using this image:
docker run -d --name pqc-server \
-p 50051:50051 -p 8080:8080 \
-v "$(pwd)/certs:/app/certs" \
-v "$(pwd)/data:/app/data" \
rey128989/pqc-server:latest
Configuration parameters are managed natively via config.json.
{
"address": "0.0.0.0:50051",
"storage_path": "data/storage.bin",
"http_api_key": "your-secure-api-key",
"use_s3": false,
"s3_bucket": "my-secure-bucket"
}
If this backend is helping you with your deployment or ongoing academic research, please head over and drop a star on the project repository. I would love to hear what workflows you are buildingโfeel free to open an issue or start a thread just to connect:
๐ Official GitHub Repository: Sujithb128989/Quantum-Safe-Backendโ
Copyright (c) 2026 Sujith B. All rights reserved.
Licensed under the Apache License, Version 2.0.
Special thanks to:
liboqs and the OQS-OpenSSL fork.Disclaimer: This software is intended for industrial research and forward-looking security implementation. While it utilizes NIST-selected algorithms, it has not undergone FIPS 140-3 certification.
Content type
Image
Digest
sha256:d340d1125โฆ
Size
369.1 MB
Last updated
10 months ago
docker pull rey128989/pqc-server