doc/Build.md: update WolfSSL commands for WolfSSL 5.7.4

This version includes a fix for certificates with more than 128 alt
names. Some configuration options have been removed because they are now
enabled by default.
This commit is contained in:
Julian Winkler
2024-11-15 18:01:36 +01:00
parent c6be36f553
commit c5ed3c6b9c

View File

@@ -73,9 +73,9 @@ If you distro ships wolfSSL with JNI enabled already, you can just install the p
```sh
git clone https://github.com/wolfSSL/wolfssl.git
cd wolfssl
git checkout v5.7.0-stable
git checkout v5.7.4-stable
autoreconf -i
./configure --enable-shared --disable-opensslall --disable-opensslextra --enable-aescbc-length-checks --enable-curve25519 --enable-ed25519 --enable-ed25519-stream --enable-oldtls --enable-base64encode --enable-tlsx --enable-scrypt --disable-examples --enable-crl --with-rsa --enable-certs --enable-session-certs --enable-encrypted-keys --enable-cert-gen --enable-cert-ext --enable-clr-monitor --enable-jni
./configure --enable-shared --disable-opensslall --disable-opensslextra --enable-aescbc-length-checks --enable-curve25519 --enable-ed25519 --enable-ed25519-stream --enable-oldtls --enable-base64encode --enable-tlsx --enable-scrypt --disable-examples --enable-crl --enable-jni
make
sudo make install
```