├── README.md └── qkd ├── accounts ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── channel.cpython-37.pyc │ ├── classical_channel.cpython-37.pyc │ ├── eve.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── quantum.cpython-37.pyc │ ├── quantum_channel.cpython-37.pyc │ ├── qubit.cpython-37.pyc │ ├── receiver.cpython-37.pyc │ ├── sender.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── classical_channel.py ├── eve.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-37.pyc │ │ └── __init__.cpython-37.pyc ├── models.py ├── quantum.py ├── quantum_channel.py ├── qubit.py ├── receiver.py ├── sender.py ├── tests.py ├── urls.py └── views.py ├── db.sqlite3 ├── manage.py ├── qkd ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py └── templates └── accounts └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/README.md -------------------------------------------------------------------------------- /qkd/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/channel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/channel.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/classical_channel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/classical_channel.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/eve.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/eve.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/quantum.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/quantum.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/quantum_channel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/quantum_channel.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/qubit.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/qubit.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/receiver.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/receiver.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/sender.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/sender.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/admin.py -------------------------------------------------------------------------------- /qkd/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/apps.py -------------------------------------------------------------------------------- /qkd/accounts/classical_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/classical_channel.py -------------------------------------------------------------------------------- /qkd/accounts/eve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/eve.py -------------------------------------------------------------------------------- /qkd/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /qkd/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qkd/accounts/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/models.py -------------------------------------------------------------------------------- /qkd/accounts/quantum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/quantum.py -------------------------------------------------------------------------------- /qkd/accounts/quantum_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/quantum_channel.py -------------------------------------------------------------------------------- /qkd/accounts/qubit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/qubit.py -------------------------------------------------------------------------------- /qkd/accounts/receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/receiver.py -------------------------------------------------------------------------------- /qkd/accounts/sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/sender.py -------------------------------------------------------------------------------- /qkd/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/tests.py -------------------------------------------------------------------------------- /qkd/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/urls.py -------------------------------------------------------------------------------- /qkd/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/accounts/views.py -------------------------------------------------------------------------------- /qkd/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/db.sqlite3 -------------------------------------------------------------------------------- /qkd/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/manage.py -------------------------------------------------------------------------------- /qkd/qkd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qkd/qkd/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/qkd/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/qkd/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/qkd/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /qkd/qkd/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/asgi.py -------------------------------------------------------------------------------- /qkd/qkd/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/settings.py -------------------------------------------------------------------------------- /qkd/qkd/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/urls.py -------------------------------------------------------------------------------- /qkd/qkd/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/qkd/wsgi.py -------------------------------------------------------------------------------- /qkd/templates/accounts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aru71727/bb84_protocol/HEAD/qkd/templates/accounts/index.html --------------------------------------------------------------------------------