mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
feature/1220 origin handle exists method (#1241)
* feat: add docs and CI workflow for publishing to onsonr.dev * (refactor): Move hway,motr executables to their own repos * feat: simplify devnet and testnet configurations * refactor: update import path for didcrypto package * docs(networks): Add README with project overview, architecture, and community links * refactor: Move network configurations to deploy directory * build: update golang version to 1.23 * refactor: move logger interface to appropriate package * refactor: Move devnet configuration to networks/devnet * chore: improve release process with date variable * (chore): Move Crypto Library * refactor: improve code structure and readability in DID module * feat: integrate Trunk CI checks * ci: optimize CI workflow by removing redundant build jobs --------- Co-authored-by: Darp Alakun <i@prad.nu>
This commit is contained in:
Executable
+57
@@ -0,0 +1,57 @@
|
||||
package kos
|
||||
|
||||
import (
|
||||
"encoding/gob"
|
||||
"io"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/onsonr/sonr/crypto/core/curves"
|
||||
"github.com/onsonr/sonr/crypto/ot/base/simplest"
|
||||
)
|
||||
|
||||
// ReceiverStreamCOtRun exposes an end-to-end "streaming" version of the cOT process for the receiver.
|
||||
// this is similar to what we're also doing in the base OT side. the user only passes an arbitrary `ReadWriter` here,
|
||||
// together with the relevant inputs (namely a choice vector); this method handles all parts of the process,
|
||||
// including both encoding / decoding and writing to / reading from the stream.
|
||||
func ReceiverStreamCOtRun(receiver *Receiver, hashKeySeed [simplest.DigestSize]byte, choice [COtBlockSizeBytes]byte, rw io.ReadWriter) error {
|
||||
enc := gob.NewEncoder(rw)
|
||||
dec := gob.NewDecoder(rw)
|
||||
|
||||
firstMessage, err := receiver.Round1Initialize(hashKeySeed, choice)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "computing first message in receiver stream cOT")
|
||||
}
|
||||
if err = enc.Encode(firstMessage); err != nil {
|
||||
return errors.Wrap(err, "encoding first message in receiver stream cOT")
|
||||
}
|
||||
responseTau := &Round2Output{}
|
||||
if err = dec.Decode(responseTau); err != nil {
|
||||
return errors.Wrap(err, "decoding responseTau in receiver stream OT")
|
||||
}
|
||||
if err = receiver.Round3Transfer(responseTau); err != nil {
|
||||
return errors.Wrap(err, "error during round 3 in receiver stream OT")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// SenderStreamCOtRun exposes the end-to-end "streaming" version of cOT for the sender.
|
||||
// the sender should pass an arbitrary ReadWriter together with their input; this will handle the whole process,
|
||||
// including all component methods, plus reading to and writing from the network.
|
||||
func SenderStreamCOtRun(sender *Sender, hashKeySeed [simplest.DigestSize]byte, input [L][OtWidth]curves.Scalar, rw io.ReadWriter) error {
|
||||
enc := gob.NewEncoder(rw)
|
||||
dec := gob.NewDecoder(rw)
|
||||
|
||||
firstMessage := &Round1Output{}
|
||||
if err := dec.Decode(firstMessage); err != nil {
|
||||
return errors.Wrap(err, "decoding first message in sender stream cOT")
|
||||
}
|
||||
responseTau, err := sender.Round2Transfer(hashKeySeed, input, firstMessage)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "error in round 2 in sender stream cOT")
|
||||
}
|
||||
if err = enc.Encode(responseTau); err != nil {
|
||||
return errors.Wrap(err, "encoding responseTau in sender stream cOT")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user