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 used pc-dart to implement some authentication processes in my network library connectanum-dart. For one of the authentication processes I need to load ed25519 keys. I tried to implement loading from open ssh key format. This works well. If the files private key is encrypted, bcrypt_pbkdf is used.
Since pc-dart does not support bcrypt, I translated the original jbcrypt code to dart. The code can be found in my library.
The code it self is just slightly changed, but works with the given tests and vectors. It is just not very fast for some reasons.
I would love to use pbkdf from pc-dart in conjunktion with bcrypt. Could you either add bcrypt to your code or give me a hint how to use my code to provide a bcrypt digerster to make it work?
The text was updated successfully, but these errors were encountered:
I fixed up performance with bcrypt. I guess its kind of usable now. [Update] The performance is good to go now. pretty much equal to what the original implementation has.
I used pc-dart to implement some authentication processes in my network library connectanum-dart. For one of the authentication processes I need to load ed25519 keys. I tried to implement loading from
open ssh key format
. This works well. If the files private key is encrypted, bcrypt_pbkdf is used.Since pc-dart does not support bcrypt, I translated the original jbcrypt code to dart. The code can be found in my library.
The code it self is just slightly changed, but works with the given tests and vectors. It is just not very fast for some reasons.
I would love to use pbkdf from pc-dart in conjunktion with bcrypt. Could you either add bcrypt to your code or give me a hint how to use my code to provide a bcrypt digerster to make it work?
The text was updated successfully, but these errors were encountered: