iceland2k14/bsgs

Hi. What is the difference

Noname400 opened this issue · 2 comments

Hi. What is the difference rand and rand1

python bsgs_hybrid_dll_secp256k1.py -pfile aa.txt -b bPfile.bin -bl bloomfile.bin -n 200000000 -keyspace 10000000000000:7fffffffffffff -rand

will this work?

I want to search for 300000 keys at the same time in a certain interval.
can I do it by accident?

-rand is ........ start from a random point in the given range and search sequential " -n " values. Then again take a new random value and search " -n " sequential ..... and so on.....

-rand1 is ....... Start from a random point in the given range, first time...........then continuously search sequential from it

If you want to search only "300000 keys at the same time" and then want to change randomly in the given range. Then use -rand and -n 300000. But remember the minimum limit will be always equal to the Total items in the bloom filter. So even if you give " -n " as a less value than bloom, still at least the minimum Total number of points in the bloom is searched in 1 go.