{"id":27000080,"url":"https://github.com/arec1b0/crypto-comparison","last_synced_at":"2026-02-27T00:32:51.756Z","repository":{"id":252278033,"uuid":"839958538","full_name":"arec1b0/crypto-comparison","owner":"arec1b0","description":"A comprehensive project comparing classical and quantum cryptography. Includes detailed explanations, code examples, and tests for various cryptographic algorithms and protocols.","archived":false,"fork":false,"pushed_at":"2024-08-08T19:38:10.000Z","size":34,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-04T03:18:47.515Z","etag":null,"topics":["aes","bb84","classical-cryptography","cryptography","ecc","grovers-algorithm","qkd","quantum-computing","quantum-cryptography","quantum-teleportation","rsa"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arec1b0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"SUPPORT.md","governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-08T17:07:30.000Z","updated_at":"2025-03-22T06:23:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"875c5bbd-eb40-4bbb-8478-fefbedf6f32f","html_url":"https://github.com/arec1b0/crypto-comparison","commit_stats":null,"previous_names":["dkrizhanovskyi/crypto-comparison","arec1b0/crypto-comparison"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/arec1b0/crypto-comparison","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arec1b0%2Fcrypto-comparison","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arec1b0%2Fcrypto-comparison/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arec1b0%2Fcrypto-comparison/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arec1b0%2Fcrypto-comparison/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arec1b0","download_url":"https://codeload.github.com/arec1b0/crypto-comparison/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arec1b0%2Fcrypto-comparison/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29879040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"ssl_error","status_checked_at":"2026-02-26T23:50:46.793Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aes","bb84","classical-cryptography","cryptography","ecc","grovers-algorithm","qkd","quantum-computing","quantum-cryptography","quantum-teleportation","rsa"],"created_at":"2025-04-04T03:18:45.008Z","updated_at":"2026-02-27T00:32:51.719Z","avatar_url":"https://github.com/arec1b0.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Comparison of Classical and Quantum Cryptography\n\nThis project aims to compare classical and quantum cryptography. We will examine the basic principles, algorithms, protocols, security, and applications of these technologies.\n\n## Project Structure\n\n- `classical_cryptography/`: Materials on classical cryptography.\n  - `overview.md`: General overview of classical cryptography.\n  - `algorithms/`: Detailed descriptions and examples of classical cryptographic algorithms.\n    - `rsa.md`: Detailed description of RSA algorithm.\n    - `rsa_example.py`: Example code for RSA algorithm.\n    - `test_rsa_example.py`: Tests for RSA example code.\n    - `aes.md`: Detailed description of AES algorithm.\n    - `aes_example.py`: Example code for AES algorithm.\n    - `test_aes_example.py`: Tests for AES example code.\n    - `ecc.md`: Detailed description of ECC algorithm.\n    - `ecc_example.py`: Example code for ECC algorithm.\n    - `test_ecc_example.py`: Tests for ECC example code.\n- `quantum_cryptography/`: Materials on quantum cryptography.\n  - `overview.md`: General overview of quantum cryptography.\n  - `protocols/`: Detailed descriptions and examples of quantum cryptographic protocols.\n    - `qkd.md`: Detailed description of QKD protocol.\n    - `qkd_example.py`: Example code for QKD protocol.\n    - `test_qkd_example.py`: Tests for QKD example code.\n    - `bb84_example.py`: Example code for BB84 protocol.\n    - `test_bb84_example.py`: Tests for BB84 example code.\n    - `ecc_qkd_example.py`: Example code for ECC in QKD.\n    - `test_ecc_qkd_example.py`: Tests for ECC in QKD example code.\n    - `grover_example.py`: Example code for Grover's algorithm.\n    - `test_grover_example.py`: Tests for Grover's algorithm example code.\n    - `quantum_teleportation_example.py`: Example code for quantum teleportation.\n    - `test_quantum_teleportation_example.py`: Tests for quantum teleportation example code.\n    - `bb84_qiskit_example.py`: Example code for BB84 on Qiskit.\n    - `test_bb84_qiskit_example.py`: Tests for BB84 on Qiskit example code.\n    - `quantum_encryption_example.py`: Example code for quantum encryption.\n    - `test_quantum_encryption_example.py`: Tests for quantum encryption example code.\n    - `quantum_superposition_entanglement_example.py`: Example code for quantum superposition and entanglement.\n    - `test_quantum_superposition_entanglement_example.py`: Tests for quantum superposition and entanglement example code.\n- `comparison.md`: Comparison of classical and quantum cryptography.\n\n## Goals\n\n1. Understand the fundamental differences between classical and quantum cryptography.\n2. Analyze the security implications of each approach.\n3. Explore the practical applications and future potential of quantum cryptography.\n\n## Getting Started\n\nTo get started, clone the repository:\n\n```sh\ngit clone https://github.com/dkrizhanovskyi/crypto-comparison.git\ncd crypto-comparison\n```\n\n## Related Projects\n\n- [Quantum Computing Tutorials](https://github.com/dkrizhanovskyi/quantum-computing-tutorials): A collection of tutorials and examples on quantum computing, covering various quantum algorithms and concepts.\n\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farec1b0%2Fcrypto-comparison","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farec1b0%2Fcrypto-comparison","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farec1b0%2Fcrypto-comparison/lists"}