libsodium-jni
libsodium-jni copied to clipboard
(Android) Networking and Cryptography Library (NaCL) JNI binding. JNI is utilized for fastest access to native code. Accessible either in Android or Java application. Uses SWIG to generate Java JNI bi...
Hi @joshjdevl, I'm currently trying to tidy up the bindings linked on the libsodium website. If this library is still maintained, then please let me know; otherwise, the link to...
Does travis_retry really solve the build issues? According to the data in paper [An empirical study of the long duration of continuous integration builds](https://dl.acm.org/doi/10.1007/s10664-019-09695-9), travis_retry can only solve 3% of...
Bumps [junit](https://github.com/junit-team/junit4) from 4.11 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
The output length in the `xchacha20poly1305` functions such as `crypto_aead_xchacha20poly1305_ietf_encrypt` is an `unsigned long long` in C (64-bit) but an int (signed 32-bit) here in the wrapper. This can lead...
Hi, we are migrating our application to API 29 and we would like to know if you have a plan to migrate this library and if there is any impact...
Trying to do the file encryption not the stream. JNI DETECTED ERROR IN APPLICATION: jarray was NULL java_vm_ext.cc:570] in call to GetByteArrayElements java_vm_ext.cc:570] from int org.libsodium.jni.SodiumJNI.crypto_secretstream_xchacha20poly1305_push(byte[], byte[], int[], byte[], int,...
I just tried libsodium on Android, using methods like Sodium.crypto_box_keypair(...) which work really great. I' ve also tried to use password hashing (using [this](https://github.com/joshjdevl/libsodium-jni/blob/master/src/test/java/org/libsodium/jni/crypto/PwhashTest.java) example). The funny thing is that...
According to your instruction, I put 2.0.2 jar file in my source of android studio with my windows personal computer. and following all of the your instructions except for build.gradle....
Hi, @joshjdevl I am making a encryption library using libsodium jni . This is my method ``` public void test(){ int ret=0; long publickeylen = Sodium.crypto_sign_publickeybytes(); long privatekeylen = Sodium.crypto_sign_secretkeybytes();...