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
If you have a database with a high number of transformations rounds it really benefits from multithread support.
KeePass uses multithreading to compute the transformations (the master key is split up to two parts of 128 bits, which is the AES block size). On dual/multi core processors, the computation can be twice as fast as on a single core processor. http://keepass.info/help/base/security.html
The text was updated successfully, but these errors were encountered:
Thanks for your suggestion, @Jellyfrog, although I'm not sure if it would make that much sense. I can't implement multithreading in the Node.js method and the native key transformation method is really fast. Do your databases have so many roudns that this would actually matter?
I could implement pthreads for sure within the library, but then it would be no longer compatible to Windows and would require more dependencies than it already does.
If you have a database with a high number of transformations rounds it really benefits from multithread support.
The text was updated successfully, but these errors were encountered: