Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support libsodium #383

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Support libsodium #383

wants to merge 2 commits into from

Conversation

conanoc
Copy link

@conanoc conanoc commented Oct 11, 2023

Added a feature to support libsodium.
Fixes #357

@@ -14,9 +14,11 @@ build = "build/main.rs"
links = "zmq"

[features]
libsodium = ['libsodium-sys-stable']
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
libsodium = ['libsodium-sys-stable']
libsodium = ['dep:libsodium-sys-stable']

And shouldn't these be double quotes?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done


[dependencies]
libc = "0.2.15"
libsodium-sys-stable = { version = "1.0", optional = true }
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that 1.0 is not a valid version number for libsodium-sys-stable: https://crates.io/crates/libsodium-sys-stable/versions

Maybe change to the latest, 1.20.4? After changing the version value, I was able to set CURVE keys without errors being returned.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because of semver, 1.0 really means >=1.0.0, which includes 1.18.1 and above.

That said it might make sense to validate that things actually build with that version, with i.e. cargo +nightly -Zminimal-versions generate-lockfile.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I was not aware of that, thanks for educating me!

I wonder why changing the version number to something explicitly in their version list seemed to make a difference on my local setup though? I can no longer recall how things were failing (build issues vs. issues with my runtime testing). I was pretty sure that this change actually resolved whatever the issue was, but perhaps I changed multiple things... I simply don't remember anymore.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Curve encryption does not work with 0.10.0
3 participants