remove duplicated comment

This commit is contained in:
Quinn Slack 2011-04-20 22:23:17 -07:00
parent 3346363186
commit 56154f318f
1 changed files with 0 additions and 2 deletions

View File

@ -27,8 +27,6 @@ sjcl.keyexchange.srp = {
*/
makeVerifier: function(I, P, s, group) {
var x;
// From RFC 5054:
// v = g^x mod N
x = this.makeX(I, P, s);
x = sjcl.bn.fromBits(x);
return group.g.powermod(x, group.N);