Open dirkfeytons opened 11 years ago
I noticed that in srp_user_process_challenge() the variable v holds the result of g^x but v is never used. In fact, a couple lines down the same calculation is done again and the result is stored in tmp1.
srp_user_process_challenge()
v
g^x
tmp1
I noticed that in
srp_user_process_challenge()
the variablev
holds the result ofg^x
butv
is never used. In fact, a couple lines down the same calculation is done again and the result is stored intmp1
.