Problem statement.
Given :
Result1 = (a * b * c * d * ……) MOD N
Result2 = (e * f * g * ….) MOD N
c, g.
We want to know from which Result c and g belong, see we only have the above final value’s {
Result1, Result2, N, c, g}.
N : large prime number
All elements { a,b,c,d,e,f,g … } are 256 bit represented prime numbers and unique.
There is no common elements in between these two sets.
NOTE : this is not normal multiplication, it is modulo multiplication.
i try with some steps but it didn’t work.
user28766874 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2