tfhe 0.7.1 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/tfhe.d.ts +212 -212
- package/tfhe.js +2027 -2022
- package/tfhe_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -208,7 +208,7 @@ When a new update is published in the Lattice Estimator, we update parameters ac
|
|
|
208
208
|
|
|
209
209
|
### Security model
|
|
210
210
|
|
|
211
|
-
The default parameters for the TFHE-rs library are chosen considering the IND-CPA security model, and are selected with a bootstrapping failure probability fixed at p_error = $2^{-
|
|
211
|
+
The default parameters for the TFHE-rs library are chosen considering the IND-CPA security model, and are selected with a bootstrapping failure probability fixed at p_error = $2^{-64}$. In particular, it is assumed that the results of decrypted computations are not shared by the secret key owner with any third parties, as such an action can lead to leakage of the secret encryption key. If you are designing an application where decryptions must be shared, you will need to craft custom encryption parameters which are chosen in consideration of the IND-CPA^D security model [1].
|
|
212
212
|
|
|
213
213
|
[1] Li, Baiyu, et al. "Securing approximate homomorphic encryption using differential privacy." Annual International Cryptology Conference. Cham: Springer Nature Switzerland, 2022. https://eprint.iacr.org/2022/816.pdf
|
|
214
214
|
|
package/package.json
CHANGED