Fernando Virdia
Fernando Virdia
Dear TFHE team, I'm filing an issue to point out that random number generation in the current version of TFHE seems broken. The library currently uses the C++ standard library's...
Hi there, This is a feature request, rather than an issue. I think it would be nice if you could provide Python/C wrappers for the core functionality of rMAPI. I've...
Hi, I was wondering if any special arrangements have to be made for running reStream on windows using `--unsecure-connection`. I have a binary for netcat on path ([this one](https://joncraton.org/blog/46/netcat-for-windows/)), however...
This is more a suggestion than an issue. Sometimes, [line 87](https://github.com/fplll/fpylll/blob/61baa3c718475dd504578700de7d8a8e1f71b1d7/src/fpylll/tools/quality.py#L87) of `tools/quality.py` may result in a `ValueError: math domain error` when floating point precision is too low (eg, if...
On a freshly cloned repo, running `npm install` results in the error below. Adding `"strictNullChecks": false,` to `tsconfig.json` seems to solve the issue. ``` > [email protected] prepare /media/fernando/shared/reMarkable-typescript > npx...
In [the source](https://github.com/malb/lattice-estimator/blob/09e235e28e7888cfd3f4408eb266ffc35020ab0c/estimator/reduction.py#L505) for CheNgu12 enumeration cost model it is mentioned that the formula for the exponent in the SVP cost was fitted to data from the Table 4 of...
Inside `reduction.py` there are various `short_vector`-style methods using very similar logic to differentiate searching for one short vector, or calling sieving to get many short vectors. These methods all look...
Estimating the dual_hybrid attack using an enumeration cost model causes `TypeError: ReductionCost.short_vectors() got an unexpected keyword argument 'sieve_dim'`. ```python from lattice_estimator.estimator import * LWE.dual_hybrid(schemes.Kyber512, red_cost_model=RC.ABLR21) ``` The attack does not...