@@ -28,6 +28,8 @@ function BaseCurve(type, conf) {
28
28
this . _wnafT3 = new Array ( 4 ) ;
29
29
this . _wnafT4 = new Array ( 4 ) ;
30
30
31
+ this . _bitLength = this . n ? this . n . bitLength ( ) : 0 ;
32
+
31
33
// Generalized Greg Maxwell's trick
32
34
var adjustCount = this . n && this . p . div ( this . n ) ;
33
35
if ( ! adjustCount || adjustCount . cmpn ( 100 ) > 0 ) {
@@ -51,7 +53,7 @@ BaseCurve.prototype._fixedNafMul = function _fixedNafMul(p, k) {
51
53
assert ( p . precomputed ) ;
52
54
var doubles = p . _getDoubles ( ) ;
53
55
54
- var naf = getNAF ( k , 1 ) ;
56
+ var naf = getNAF ( k , 1 , this . _bitLength ) ;
55
57
var I = ( 1 << ( doubles . step + 1 ) ) - ( doubles . step % 2 === 0 ? 2 : 1 ) ;
56
58
I /= 3 ;
57
59
@@ -88,7 +90,7 @@ BaseCurve.prototype._wnafMul = function _wnafMul(p, k) {
88
90
var wnd = nafPoints . points ;
89
91
90
92
// Get NAF form
91
- var naf = getNAF ( k , w ) ;
93
+ var naf = getNAF ( k , w , this . _bitLength ) ;
92
94
93
95
// Add `this`*(N+1) for every w-NAF index
94
96
var acc = this . jpoint ( null , null , null ) ;
@@ -144,8 +146,8 @@ BaseCurve.prototype._wnafMulAdd = function _wnafMulAdd(defW,
144
146
var a = i - 1 ;
145
147
var b = i ;
146
148
if ( wndWidth [ a ] !== 1 || wndWidth [ b ] !== 1 ) {
147
- naf [ a ] = getNAF ( coeffs [ a ] , wndWidth [ a ] ) ;
148
- naf [ b ] = getNAF ( coeffs [ b ] , wndWidth [ b ] ) ;
149
+ naf [ a ] = getNAF ( coeffs [ a ] , wndWidth [ a ] , this . _bitLength ) ;
150
+ naf [ b ] = getNAF ( coeffs [ b ] , wndWidth [ b ] , this . _bitLength ) ;
149
151
max = Math . max ( naf [ a ] . length , max ) ;
150
152
max = Math . max ( naf [ b ] . length , max ) ;
151
153
continue ;
0 commit comments