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
{{ message }}
This repository was archived by the owner on Jun 12, 2024. It is now read-only.
The rsa calculations can be speed up by using the Chinese remainder theorem instead of just a the straight forward modpow. In my own library this caused speeds to more then double. Additionally the inverse of the blind can be calculated more efficiently, switching from something like what you have to the one in bn.js caused performance to more then triple, in other words that one operation was more then twice as costly as all the rest of decryption combined.
The text was updated successfully, but these errors were encountered:
The rsa calculations can be speed up by using the Chinese remainder theorem instead of just a the straight forward modpow. In my own library this caused speeds to more then double. Additionally the inverse of the blind can be calculated more efficiently, switching from something like what you have to the one in bn.js caused performance to more then triple, in other words that one operation was more then twice as costly as all the rest of decryption combined.
The text was updated successfully, but these errors were encountered: