
• MPC Integration
• MPC API
• MPC Developer SDKs
Our SDKs let you split sensitive data client-side, compute across an MPC network your app never touches, and reconstruct only the final answer locally. No raw values in your logs. No raw values in your database. Structurally impossible to leak.
Why use SDKs instead of just encrypting things?
Because encryption still means someone has the keys. With MPC, your app splits data into shares before it leaves the client, computes across a network that can't reconstruct inputs, and rebuilds only the final answer locally.
Split before it leaves
Turn inputs into shares on the client. The original value never hits your network.
Compute without seeing
The MPC network processes shares it can't reverse-engineer, even if nodes collude.
Rebuild only the answer
Get result shares back. Combine them locally. Intermediate steps? Gone.
Available SDKs
Rust SDK
Production-ready
Build MPC applications with a mature, fully-functional SDK. Includes MPCaaS architecture separating app developers from infrastructure operators, QUIC networking, and comprehensive error handling.
Python SDK
In development
Clean high-level interface currently under active development. Not production-ready—use Rust SDK for production work today.
Solidity SDK
Production-ready
Integrate MPC into smart contracts for on-chain privacy. Coordinate computations, manage access control, and handle inputs from blockchain applications.
How it works
Share
share(input)
Create client-side shares. This happens in your app before anything leaves. The raw value stays local.
Send
start_session()
+
send(shares)
Computation runs across MPC parties. None of them can reconstruct your input, even working together.
Rebuild
reconstruct(result_shares)
Combine result pieces locally. Only the final answer gets revealed. The computation's intermediate steps are mathematically destroyed.



