mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 18:01:39 +00:00
- **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
101 lines
3.7 KiB
Go
Executable File
101 lines
3.7 KiB
Go
Executable File
package simplest
|
|
|
|
import (
|
|
"encoding/gob"
|
|
"io"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/onsonr/sonr/pkg/crypto/core/curves"
|
|
"github.com/onsonr/sonr/pkg/crypto/zkp/schnorr"
|
|
)
|
|
|
|
// ReceiverStreamOTRun exposes the entire seed OT process for the receiver in "stream mode" to the user.
|
|
// what this means is that instead of calling the component methods in the process manually, and manually handling
|
|
// the encoding and decoding of the resulting output and input structs, the user needs _only_ to pass a ReadWriter
|
|
// (in practice this will be something like a websocket object), and this method will handle the entire process.
|
|
// this serves the dual (though related) purpose of conveniently bundling up the entire seed OT process,
|
|
// for use in tests, both in this package, as well as in the other packages which use this one (like cOT and mult).
|
|
func ReceiverStreamOTRun(receiver *Receiver, rw io.ReadWriter) error {
|
|
enc := gob.NewEncoder(rw)
|
|
dec := gob.NewDecoder(rw)
|
|
gob.Register(&curves.ScalarK256{})
|
|
gob.Register(&curves.PointK256{})
|
|
|
|
proof := &schnorr.Proof{}
|
|
|
|
if err := dec.Decode(proof); err != nil {
|
|
return errors.Wrap(err, "failed to decode proof in receiver stream OT")
|
|
}
|
|
|
|
receiversMaskedChoice, err := receiver.Round2VerifySchnorrAndPadTransfer(proof)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error in round 2 in receiver stream OT")
|
|
}
|
|
if err = enc.Encode(receiversMaskedChoice); err != nil {
|
|
return errors.Wrap(err, "error encoding result of round 1 in receiver stream OT")
|
|
}
|
|
var challenge []OtChallenge
|
|
err = dec.Decode(&challenge)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error decoding challenge in receiver stream OT")
|
|
}
|
|
challengeResponse, err := receiver.Round4RespondToChallenge(challenge)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error computing round 2 challenge response in receiver stream OT")
|
|
}
|
|
if err = enc.Encode(challengeResponse); err != nil {
|
|
return errors.Wrap(err, "error encoding challenge response in receiver stream OT")
|
|
}
|
|
var openings []ChallengeOpening
|
|
err = dec.Decode(&openings)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error decoding challenge openings in receiver stream OT")
|
|
}
|
|
return receiver.Round6Verify(openings)
|
|
}
|
|
|
|
// SenderStreamOTRun exposes the entire seed OT process for the sender in "stream mode" to the user.
|
|
// similarly to the above, this means that the user needs only to pass a `ReadWriter` representing the comm channel;
|
|
// this method will handle all encoding and decoding + writing and reading to the channel.
|
|
func SenderStreamOTRun(sender *Sender, rw io.ReadWriter) error {
|
|
// again a high-level helper method showing the overall flow, this time for the sender.
|
|
enc := gob.NewEncoder(rw)
|
|
dec := gob.NewDecoder(rw)
|
|
gob.Register(&curves.ScalarK256{})
|
|
gob.Register(&curves.PointK256{})
|
|
|
|
proof, err := sender.Round1ComputeAndZkpToPublicKey()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err = enc.Encode(proof); err != nil {
|
|
return err
|
|
}
|
|
|
|
var receiversMaskedChoice []ReceiversMaskedChoices
|
|
err = dec.Decode(&receiversMaskedChoice)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error decoding receiver's masked choice in sender stream OT")
|
|
}
|
|
|
|
challenge, err := sender.Round3PadTransfer(receiversMaskedChoice)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error during round 2 pad transfer in sender stream OT")
|
|
}
|
|
err = enc.Encode(challenge)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error encoding challenge in sender stream OT")
|
|
}
|
|
var challengeResponses []OtChallengeResponse
|
|
err = dec.Decode(&challengeResponses)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error decoding challenges responses in sender stream OT")
|
|
}
|
|
opening, err := sender.Round5Verify(challengeResponses)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error in round 3 verify in sender stream OT")
|
|
}
|
|
return enc.Encode(opening)
|
|
}
|