removed secretkey from debug_fhe_program, now uses privatekey instead

This commit is contained in:
Matthew Liu
2023-07-18 16:42:47 -07:00
parent bb59e579b1
commit 27f2153902
6 changed files with 144 additions and 49 deletions

View File

@@ -35,7 +35,7 @@ fn main() {
app.get_fhe_program("mad").unwrap(),
args1,
&public,
&private.0,
&private,
mad.source(),
)
.unwrap();
@@ -47,7 +47,7 @@ fn main() {
app.get_fhe_program("add_squares").unwrap(),
args2,
&public,
&private.0,
&private,
add_squares.source(),
)
.unwrap();