A transpilation plugin for Qiskit with a modified layout stage that encodes (classical) information using the virtual-to-physical qubit mapping
Project description
qiskit-layout-attack
[!NOTE] This plugin was developed to demonstrate the importance of reproducible builds in the Qiskit quantum computing workflow. It shows that non-reproducibility in the transpilation process (specifically during the layout stage) can be exploited to encode classical information into the transpiled quantum circuit. If an attacker subsequently gains access to the job description, this can lead to the leakage of confidential data.
A transpilation layout plugin for Qiskit that demonstrates how a modified transpilation stage can be used to hide classical information in the final transpiled quantum circuit.
The current implementation, by default, tries to encode the UTF-8 encoded string
My secret data encoded in the transpiled circuit layout. into the transpiled circuit.
Custom data will be used if available in builtins.data (see the example below). If data is too large to be
encoded into the given circuit, the layout plugin fallbacks to the
TrivialLayout, which maps virtual
qubits to physical qubits in the trivial way (i.e., $0\rightarrow0$, $1\rightarrow1$, etc.).
The plugin is implemented as a subclass of
PassManagerStagePlugin,
which uses a custom pass called LeakyLayout. This pass is
implemented as a subclass of AnalysisPass,
since no changes to the quantum circuit are done.
Encoded data can be recovered with the recover_data() function implemented in the
decoder module. See the example below.
Installation
git clone https://github.com/iyanmv/qiskit-leaky-layout.git
cd qiskit-leaky-layout
pip install .
Example
import builtins
from qiskit.circuit import QuantumCircuit
from qiskit.transpiler.preset_passmanagers import generate_preset_pass_manager
from qiskit.transpiler.preset_passmanagers.plugin import list_stage_plugins
from qiskit_ibm_runtime.fake_provider import FakeBrisbane
from qiskit_leaky_layout.decoder import recover_data
# Check that layout plugin was installed successfully
assert "leaky_layout" in list_stage_plugins("layout")
# Fake 127-qubit backend used as target for the transpilation
backend = FakeBrisbane()
# Pass manager for the transpilation with our custom layout plugin
pm = generate_preset_pass_manager(
optimization_level=3, backend=backend, layout_method="leaky_layout"
)
# 3-qubit GHZ circuit
qc = QuantumCircuit(backend.num_qubits)
qc.h(0)
qc.cx(0, range(1, 3))
# Uncomment to encode these bytes instead of the default message
# builtins.data = b"\x12Y\xfd$^%g\xcbf\x1b"
# Transpiled circuit
isa_qc = pm.run(qc)
# Recover data as raw bytes
recovered_default_message = recover_data(isa_qc, size_alphabet=127)[-56:]
assert (recovered_default_message == b"My secret data encoded in the transpiled circuit layout.")
# recovered_custom_message = recover_data(isa_qc, size_alphabet=127)[-10:]
# assert recovered_custom_message == b"\x12Y\xfd$^%g\xcbf\x1b"
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qiskit_leaky_layout-0.2.5.tar.gz.
File metadata
- Download URL: qiskit_leaky_layout-0.2.5.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c80d857414559e3378f450acdad650cd4827f6e4651b2b1a9ecc23e1c866d0f
|
|
| MD5 |
1e8b5889ff0167de6da86b197eb1da6f
|
|
| BLAKE2b-256 |
85ba4e51a29a1818eac602bcf486de5abe6632bd6f33807b64b976b28043342f
|
Provenance
The following attestation bundles were made for qiskit_leaky_layout-0.2.5.tar.gz:
Publisher:
publish-to-pypi.yml on iyanmv/qiskit-leaky-layout
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qiskit_leaky_layout-0.2.5.tar.gz -
Subject digest:
8c80d857414559e3378f450acdad650cd4827f6e4651b2b1a9ecc23e1c866d0f - Sigstore transparency entry: 1327292113
- Sigstore integration time:
-
Permalink:
iyanmv/qiskit-leaky-layout@b2eb3ca99ea0a7ea7ecdbb6e9c8f6e7c347047fd -
Branch / Tag:
refs/tags/v0.2.5 - Owner: https://github.com/iyanmv
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@b2eb3ca99ea0a7ea7ecdbb6e9c8f6e7c347047fd -
Trigger Event:
push
-
Statement type:
File details
Details for the file qiskit_leaky_layout-0.2.5-py3-none-any.whl.
File metadata
- Download URL: qiskit_leaky_layout-0.2.5-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac03a11bc6e19caaedafd886bb802f2c80f8ce7126ce77ce03e459b0610cb662
|
|
| MD5 |
29c64a846c923a3515ba6c38a4f67fec
|
|
| BLAKE2b-256 |
bf8846931f469ac919e628e0e300b4f7a5342209ca3bf4638178250e072ff24f
|
Provenance
The following attestation bundles were made for qiskit_leaky_layout-0.2.5-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on iyanmv/qiskit-leaky-layout
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qiskit_leaky_layout-0.2.5-py3-none-any.whl -
Subject digest:
ac03a11bc6e19caaedafd886bb802f2c80f8ce7126ce77ce03e459b0610cb662 - Sigstore transparency entry: 1327292217
- Sigstore integration time:
-
Permalink:
iyanmv/qiskit-leaky-layout@b2eb3ca99ea0a7ea7ecdbb6e9c8f6e7c347047fd -
Branch / Tag:
refs/tags/v0.2.5 - Owner: https://github.com/iyanmv
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@b2eb3ca99ea0a7ea7ecdbb6e9c8f6e7c347047fd -
Trigger Event:
push
-
Statement type: