diff --git a/README.md b/README.md index 6d44a4eb8..07376ab69 100644 --- a/README.md +++ b/README.md @@ -92,10 +92,10 @@ fn main() -> Result<(), Box> { // On the server side: set_server_key(server_keys); - // Clear equivalent computations: 1344 * 8 = 10752 + // Clear equivalent computations: 1344 * 5 = 6720 let encrypted_res_mul = &encrypted_a * &encrypted_b; - // Clear equivalent computations: 1344 >> 8 = 42 + // Clear equivalent computations: 1344 >> 5 = 42 encrypted_a = &encrypted_res_mul >> &encrypted_b; // Clear equivalent computations: let casted_a = a as u8;