You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should review the complicated code that does the various optimizations in crypto/bn and see what we can simplify without hurting keygen performance. In particular, is the Karatsuba multiplication (bn_mul_recursive) and/or Comba multiplication (bn_mul_comba4, bn_sqr_comba8, bn_sqr_comba4, etc.) actually useful, or is it just needless complexity?
We already made RSA signing and RSA verification independent from it, AFAICT. (That needs to be verified.) RSA key generation (#219) might need these optimizations?
The text was updated successfully, but these errors were encountered:
We should review the complicated code that does the various optimizations in crypto/bn and see what we can simplify without hurting keygen performance. In particular, is the Karatsuba multiplication (
bn_mul_recursive
) and/or Comba multiplication (bn_mul_comba4
,bn_sqr_comba8
,bn_sqr_comba4
, etc.) actually useful, or is it just needless complexity?We already made RSA signing and RSA verification independent from it, AFAICT. (That needs to be verified.) RSA key generation (#219) might need these optimizations?
The text was updated successfully, but these errors were encountered: