Get running in under 10 minutes
This guide will get you up and running with QBitShield's quantum-safe key generation in minutes. Follow these simple steps to start securing your applications with enterprise-grade quantum cryptography.
Sign up and get your enterprise API key
# Demo keys for testing:
demo_key_for_testing
QSDemo
Generate your first quantum-safe key
curl -X POST "http://localhost:8000/api/v2/generate" \
-H "X-API-Key: demo_key_for_testing" \
-H "Content-Type: application/json" \
-d '{"security_level": 256, "enable_nist_validation": true}'
Add quantum-safe security to your application
const response = await fetch('/api/v2/generate', {
method: 'POST',
headers: {
'X-API-Key': 'your-api-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
security_level: 256,
enable_nist_validation: true
})
});
const keyData = await response.json();
console.log('Quantum key:', keyData.key);
Now that you have QBitShield running, explore these advanced features: