Open nrryuya opened 5 years ago
For code size reduction, I inlined these functions in the previous code,
_convertUInt256ListToBytes
_convertBytesArrayToUInt256List
_compare
following the changes made in #72 from the first commit to the third commit.
isPrime.vy
RSAAccumulator.vy
modularMul4
modularMulBy4
bytes[256]
uint256[8]
code size reduction
For code size reduction, I inlined these functions in the previous code,
_convertUInt256ListToBytes
_convertBytesArrayToUInt256List
_compare
following the changes made in #72 from the first commit to the third commit.
What's next?
isPrime.vy
(#74)RSAAccumulator.vy
to use this andisPrime.vy
Others
modularMul4
andmodularMulBy4
by 4?bytes[256]
(without converting them touint256[8]
?) like other implementations?