Views
No views yet
| Attribute | Value |
|---|---|
| Developer | QuantumIndSSI Ltd |
| Base Model | Qwen/Qwen2-0.5B-Instruct |
| Architecture | Transformer decoder (causal LM) |
| Fine-tuning Method | LoRA (Low-Rank Adaptation) |
| LoRA Rank | 16 |
| LoRA Alpha | 32 |
| License | apache-2.0 |
| Metric | Target | Score |
|---|---|---|
| Perplexity | < 10.0 | TBD |
| Vulnerability Detection Rate | > 85% | TBD |
| Attack Vector Recognition | > 80% | TBD |
| Edge Latency (CPU) | < 1000ms | TBD |
| Memory Footprint | < 4GB | TBD |
1model_id = "quantumindssi/01_quantum_resistant_crypto_analyzer"
2from transformers import AutoModelForCausalLM, AutoTokenizer
3model = AutoModelForCausalLM.from_pretrained(model_id)
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5
6prompt = """Analyze the following TLS 1.2 implementation for quantum-vulnerable patterns:
7```python
8context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
9context.set_ciphers('RSA-AES256-GCM-SHA384')
## Limitations
- Not a substitute for certified security consultants or formal verification
- Synthetic training data may not capture all real-world edge cases
- English only
- Analysis is heuristic; false positives/negatives are possible
## Hardware Requirements
| Target | RAM | Notes |
|--------|-----|-------|
| Cloud GPU | 4GB | FP16 inference |
| Workstation | 3GB | INT8 quantized |
| Victron Edge | 2-3GB | INT8/INT4 quantized, CPU |
## Citation
```bibtex
@misc{01_quantum_resistant_crypto_analyzer,
title={Quantum-Resistant Cryptographic Protocol Analyzer},
author={QuantumIndSSI Ltd},
year={2026},
publisher={Hugging Face},
howpublished={\url{https://huggingface.co/quantumindssi/01_quantum_resistant_crypto_analyzer}}
}