We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35b8c64 commit 0153b77Copy full SHA for 0153b77
ZKP_Demo_Tool/zkp_gui_game.py
@@ -74,3 +74,11 @@ def __init__(self):
74
container = QWidget()
75
container.setLayout(main_layout)
76
self.setCentralWidget(container)
77
+ def run_zkp_simulation(self):
78
+ start = self.start_selector.currentText()
79
+ end = self.end_selector.currentText()
80
+ self.output_panel.append(f"[1] Selected start: {start}, end: {end}")
81
+ self.output_panel.append("[2] Committing to a path (simulated)...")
82
+ self.output_panel.append("[3] Verifier asks: Reveal the path length or a random edge?")
83
+ self.output_panel.append("[4] Revealed segment matches commitment. Proof accepted.\n")
84
+
0 commit comments