Pangram verdict · v3.3
We believe that this document is fully AI-generated
AI likelihood · overall
AIArticle text · 176 words · 1 segments analyzed
Start with the Rust SDK quickstart if you want the smallest app-shaped project. Then move to the private matchmaking tutorial for the full Rust service boundary, and use the focused tutorials to isolate the privacy patterns you will reuse in your own app: reveal boundaries and hidden state.Start here
Deepen the mental model
Run the source The runnable projects live in the Stoffel tutorials repository. From the repository root: Then run the quickstart or matching tutorial directly: Each tutorial README includes its exact cargo run, stoffel check, stoffel build, and stoffel run commands.What to copy into your app Copy the boundary pattern, not the sample domain: Keep public product data in ordinary application code. Give each logical client an explicit client slot and private payload type. Put only the private computation boundary in StoffelLang. Attach client inputs with one with_client_input(slot, values) call per logical client slot. Validate the client input shape before running local MPC. Open only the authorized output your product needs. Map the opened result back into a typed Rust domain object.
Next steps