lazysodium-java icon indicating copy to clipboard operation
lazysodium-java copied to clipboard

A Java implementation of the Libsodium crypto library. For the lazy dev.

Results 30 lazysodium-java issues
Sort by recently updated
recently updated
newest added

When running LazySodium on Windows, the bundled sodium.dll cannot be loaded when the path to the lazysodium JAR file contains spaces: ``` Native library (win32-x86-64/sodium.dll) not found in resource path...

https://search.maven.org/artifact/com.goterl/lazysodium-java

Adds variants of `sodium_memzero`, `sodium_mlock` and `sodium_munlock` that accept a JNA Pointer instead of a byte array.

Using plain strings as input to hash, encryption, etc. functions doesn't work very well for binary data. I have experienced several issues where decoding the data to a string before...

If yes, maybe worth adding a note to the doc here: https://github.com/terl/lazysodium-java/blob/master/src/main/java/com/goterl/lazysodium/interfaces/ShortHash.java#L59

Hi there, I have an issue with starting my app that uses Lazysodium. And this issue is reproduces only on Rocky Linux OS but not other ones that I'd tried...

When attempting to use lazysodium-java on an M1 mac (running MacOS Big Sur), the loading of the library within the jar file is resulting in the following error: ```bash Exception...

## Issue description We are trying to use lazysodium-java 5.0.1 in an Eclipse project through [m2e](https://www.eclipse.org/m2e/), but lazysodium can't find the resource-loader bundle. Even if I require all of lazysodiums...

This is not comprehensive coverage, but should take care of a number of unguarded calls. It comes out of issue #81 in which a call to `cryptoSecretStreamPush` with an incorrectly...

I was getting VM crashes after some code changes where I messed up buffer sizes, and I've narrowed it down to this simplified repro case (in Kotlin): ```kotlin fun repro()...