Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Kulynych committed May 29, 2015
1 parent 06c347f commit 3f53050
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ assert(decrypted_response == expected_result);

Note that ciphertext can be compressed only during encryption on the client side, so cost for Server → Client communication is significantly higher than that of Client → Server communication.

### Available homomorphic operations

- Bitwise addition (XOR): `c1 ^ c2`
- Bitwise multiplication (AND): `c1 & c2`
- Equality comparison: `c0.equal({c1, c2, ..., cn})`..
- Selection of _i_-th ciphertext: `c0.select({c1, c2, ..., cn})`.

## License

Expand Down

0 comments on commit 3f53050

Please sign in to comment.