From 612757c95a4d47449c3684ac29f3f49f75657b3f Mon Sep 17 00:00:00 2001 From: JernKunpittaya <61564542+JernKunpittaya@users.noreply.github.com> Date: Tue, 15 Oct 2024 14:16:40 +0700 Subject: [PATCH] readme --- DevConDemo/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/DevConDemo/README.md b/DevConDemo/README.md index 2d42e6ad1..aea054ed3 100644 --- a/DevConDemo/README.md +++ b/DevConDemo/README.md @@ -9,15 +9,15 @@ Note that we're working with 256-bit integer, resulting in 320-bit prime number, Scripts/setup-ssl.sh Scripts/setup-clients.sh ./compile.py demo_core_initiate -F 256 - PLAYERS= Scripts/.sh demo-demo_core_initiate + PLAYERS= Scripts/.sh demo_core_initiate ``` 2. Interaction during receiving private input 2.1 On Computation server side, run as follows to keep listening to the private input the client's going to provide. Note that these servers, individually, already hardcode into .mpc file, the corresponding delta & zero encoding values from the tlsn proof of the client who is providing input. ``` - ./compile.py demore_core_save -F 256 - PLAYERS= Scripts/.sh demo-demo_core_save + ./compile.py demo_core_save -F 256 + PLAYERS= Scripts/.sh demo_core_save ``` 2.2 On Client side who's gonna provide private input, run following file to provide both the private input and the private nonce. Once he provides the input and the computation servers compute and store his commitment successfully, the client who provides input will receive the commitment back, which they can check with their own commitment in tlsn proof. (TODO: Need to figure out what if it doesn't match.) @@ -30,8 +30,8 @@ Note that we're working with 256-bit integer, resulting in 320-bit prime number, 2.1 On Computation server side, run as follows to keep listening to the client asking for computation by the computation index (which is public) ``` - ./compile.py demore_core_query -F 256 - PLAYERS= Scripts/.sh demo-demo_core_query + ./compile.py demo_core_query -F 256 + PLAYERS= Scripts/.sh demo_core_query ``` 2.2 On Client side who's gonna query computation, run following file to receive the result of the computation and the corresponding commitments of all private inputs. (TODO: Figure out if this step is necessary and how to make it make more sense)