Skip to content

Commit

Permalink
Create secure_multiparty_computation.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 14, 2024
1 parent a25144c commit dc003b2
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// File name: secure_multiparty_computation.rs
use homomorphic_encryption::HomomorphicEncryption;

struct SecureMultipartyComputation {
he: HomomorphicEncryption,
}

impl SecureMultipartyComputation {
fn new() -> Self {
// Implement secure multiparty computation using homomorphic encryption here
Self { he: HomomorphicEncryption::new() }
}
}

0 comments on commit dc003b2

Please sign in to comment.