Open kilic opened 1 year ago
This PR fixes wnaf conversion for dense values which requires len * 8 + 1 numbers rather than len * 8. Also max window value is reduced to 63. It was before 64 and then width = 1 << window was overflowing.
len * 8 + 1
len * 8
width = 1 << window
This PR fixes wnaf conversion for dense values which requires
len * 8 + 1
numbers rather thanlen * 8
. Also max window value is reduced to 63. It was before 64 and thenwidth = 1 << window
was overflowing.