Releases: Geod24/libsodiumd
v0.2.0: Generic hash now exposes a safe / pure interface
Attributes have been added to the relevant crypto_generichash functions.
nothrow @nogc
was already present everywhere, but @safe
wrappers were added,
and pure
to all function but the key generation one.
v0.1.0: Added Windows support in the dub.json
This release fixes the dub.json
to correctly work on Windows with releases downloaded from Github.
Notably, the releases include a binary named libsodium.lib
instead of the usual sodium.lib
, which would lead to compilation error with dub
.
This relies on the right libsodium.lib
being available to the linker, for example in a path provided in LIB
.
And example on how to do this can be found in the newly added Github workflow.
Note that DMD support isn't checked by the CI, only LDC.
v0.1.0: Bindings for libsodium v1.0.18
Those bindings support the new version of libsodium.
The full changelog is available here.
v0.0.1: Bindings for libsodium v1.0.17
Those bindings have yet to be tested in an application
(although they already pass trivial unittests),
and thus should be used with caution.