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
This issue is about the first step of supporting WAMP-cryptosign and XBR in AutobahnJava, which is integrate a NaCl library to that we can implement the former.
Ultimately, we want an ABJ equivalent of the code here:
@om26er what do you think? I think you once looked into NaCl libraries also / already .. not sure?
yes, we do support Cryptosign in autobahn-java today, using https://github.com/joshjdevl/libsodium-jni, I just peaked into its source and it seems it doesn't implement SealedBox as well.
Regarding lazysodium, it seems fine, though is maintained by a single person, so wonder what happens if the person loses interest.
ahhh, right .. I forgot! cool=) so we have a NaCl library already integrated, and we only need to find out how to use SealedBox - or how work with upstream of https://github.com/joshjdevl/libsodium-jni to support it.
This issue is about the first step of supporting WAMP-cryptosign and XBR in AutobahnJava, which is integrate a NaCl library to that we can implement the former.
Ultimately, we want an ABJ equivalent of the code here:
I've looked at some of the libraries from here https://download.libsodium.org/doc/bindings_for_other_languages/, and spent a bit more time looking into lazysodium, which I had a good impression:
The other library that I looked at:
In WAMP-cryptosign and XBR we need:
nacl.signing.SigningKey
nacl.secret.SecretBox
nacl.public.SealedBox
and while I've seen
SecretBox
support in lazysodium and cava, not sure aboutSealedBox
.. haven't seen that one.In which case we would need to work with upstream to get support for that into the lib ..
@om26er what do you think? I think you once looked into NaCl libraries also / already .. not sure?
The text was updated successfully, but these errors were encountered: