From ba42938f5a4ef924f9697aff3fae5a8cc6da4d91 Mon Sep 17 00:00:00 2001 From: Hardcore Sushi Date: Sun, 29 Aug 2021 13:35:54 +0200 Subject: [PATCH] Upgrade to OpenSSL v1.1.1l --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 89f9384..71b7f6c 100644 --- a/README.md +++ b/README.md @@ -103,16 +103,16 @@ $ git submodule update --init libgocryptfs needs OpenSSL: ``` $ cd app/libgocryptfs -$ wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz +$ wget https://www.openssl.org/source/openssl-1.1.1l.tar.gz ``` Verify OpenSSL signature: ``` -$ wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz.asc -$ gpg --verify openssl-1.1.1k.tar.gz.asc openssl-1.1.1k.tar.gz +$ wget https://www.openssl.org/source/openssl-1.1.1l.tar.gz.asc +$ gpg --verify openssl-1.1.1l.tar.gz.asc openssl-1.1.1l.tar.gz ``` Continue **ONLY** if the signature is **VALID**. ``` -$ tar -xvzf openssl-1.1.1k.tar.gz +$ tar -xvzf openssl-1.1.1l.tar.gz ``` #### Build @@ -127,7 +127,7 @@ $ go get golang.org/x/sys/unix golang.org/x/sys/cpu golang.org/x/crypto/hkdf git Then, retrieve your Android NDK installation path, usually someting like "/home/\/Android/SDK/ndk/\". We can now build libgocryptfs: ``` $ cd DroidFS/app/libgocryptfs -$ env ANDROID_NDK_HOME="" OPENSSL_PATH="./openssl-1.1.1k" ./build.sh +$ env ANDROID_NDK_HOME="" OPENSSL_PATH="./openssl-1.1.1l" ./build.sh ``` Then, open the DroidFS project with Android Studio. \ If a device (virtual or physical) is connected, just click on "Run". \