Closed vitorenesduarte closed 9 years ago
This only makes sense if the performance of this custom implementation is better that BigInteger.modPow.
Maybe start with the Right to left method (see here)
This was supposedly needed to compute ei = u^i.
Since ei = e(i-1) . u, pow method is not needed in the protocol -> efficiency gain.
This only makes sense if the performance of this custom implementation is better that BigInteger.modPow.
Maybe start with the Right to left method (see here)