Use native Argon2 implementation

This commit is contained in:
Chih-Hsuan Yen
2019-07-16 20:42:02 +08:00
parent e081a6aa2c
commit 7d1eeb1e34
9 changed files with 89 additions and 0 deletions

View File

@@ -1,6 +1,11 @@
#!/bin/bash
set -e
echo '*****************************************'
echo '******* Building native libraries *******'
echo '*****************************************'
./build-native.sh
echo '*****************************************'
echo '********** Building Java parts **********'
echo '*****************************************'

View File

@@ -0,0 +1,6 @@
#!/bin/bash
set -e
pushd ../java/argon2
ndk-build
popd