ladnir / cryptoTools

A repo to hold common tools used by my crypto projects
Other
117 stars 53 forks source link

Question About CuckooHash Params #37

Closed zhouxv closed 6 months ago

zhouxv commented 10 months ago

In cryptoTools/Common/CuckooIndex.cpp, the function selectParams is used to set CuckooHash Params, what is the basis for setting the parameters, and are there any research papers on the relevant experimental conclusions and formulas?

For example, is there rigorous evidence supporting the lines in the figure below, image or which article proposed the formula for calculating the statSecParam parameter? image

Thank you for your time and assistance. I truly appreciate your help in addressing my questions. Looking forward to hearing from you soon.

ladnir commented 10 months ago

i believe this is the more detailed description https://eprint.iacr.org/2018/579.pdf

but i think i might have updated the parameters since that paper was published. The methodology is the same though.

ladnir commented 10 months ago

I think the code to run the experiments is here. https://github.com/ladnir/cryptoTools/tree/7c3fed414d128e7ee9d2aad961731ab3344bd0d0/frontend_cryptoTools/cuckoo

although it might be out of date.

zhouxv commented 10 months ago

Thanks for your response.^_^ I will do some experiments.