Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyoohyung, Han authored Feb 20, 2019
1 parent f930668 commit 1355829
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ int main() {
complex<double>* mvec2 = EvaluatorUtils::randomComplexArray(slots);

// Encrypt Two Arry of Complex //
Ciphertext cipher1 = scheme.encrypt(mvec1, n, logp, logq);
Ciphertext cipher2 = scheme.encrypt(mvec2, n, logp, logq);
Ciphertext cipher1;
scheme.encrypt(cipher1, mvec1, n, logp, logq);
Ciphertext cipher2;
scheme.encrypt(cipher2, mvec2, n, logp, logq);

// Addition //
Ciphertext cipherAdd;
Expand Down

0 comments on commit 1355829

Please sign in to comment.