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
I have ported an implementation of the TwoFish algorithm from BouncyCastle to
CryptoJS here:
https://github.com/mitchellrj/KeePassJS/blob/master/bouncycastle/twofish.js
It is under the MIT license, so if this fits with your current New BSD license,
please feel free to include it in your next release.
Original issue reported on code.google.com by richard....@gmail.com on 18 Sep 2012 at 9:22
The text was updated successfully, but these errors were encountered:
Ok, there is a bug in your version
k64Cnt = this._key.words.length / 2;
this counts "dead" bytes in the key
you should use something like that:
k64Cnt = this._key.sigBytes / 8;
Original comment by likha...@gmail.com on 7 Dec 2013 at 5:47
Original issue reported on code.google.com by
richard....@gmail.com
on 18 Sep 2012 at 9:22The text was updated successfully, but these errors were encountered: