From c905bfd27cc8dcb87335e3e9f07260eea9f1e70d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 30 Jul 2024 19:35:38 +0200 Subject: [PATCH] tidy-up: link updates (#1434) --- .github/workflows/ci.yml | 2 +- docs/INSTALL_AUTOTOOLS | 2 +- docs/INSTALL_CMAKE.md | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8602be1e..c77d20c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -212,7 +212,7 @@ jobs: if: ${{ matrix.crypto == 'OpenSSL-3-no-deprecated' }} run: | OPENSSLVER=openssl-3.2.0 - curl -fsS -L https://www.openssl.org/source/$OPENSSLVER.tar.gz | tar -xzf - + curl -fsS -L https://github.com/openssl/openssl/releases/download/$OPENSSLVER/$OPENSSLVER.tar.gz | tar -xzf - cd $OPENSSLVER ./Configure no-deprecated \ no-apps no-docs no-tests no-makedepend \ diff --git a/docs/INSTALL_AUTOTOOLS b/docs/INSTALL_AUTOTOOLS index 3ab5f5c2..46584d76 100644 --- a/docs/INSTALL_AUTOTOOLS +++ b/docs/INSTALL_AUTOTOOLS @@ -275,7 +275,7 @@ Some ./configure options deserve additional comments: * --with-libssl-prefix=[DIR] libssh2 can use the OpenSSL library - (https://www.openssl.org) for cryptographic operations. + (https://www.openssl-library.org/) for cryptographic operations. One of the cryptographic libraries is required. Configure will attempt to locate OpenSSL in the diff --git a/docs/INSTALL_CMAKE.md b/docs/INSTALL_CMAKE.md index 146e80d4..5b494db6 100644 --- a/docs/INSTALL_CMAKE.md +++ b/docs/INSTALL_CMAKE.md @@ -67,9 +67,10 @@ The following options are available: * `CRYPTO_BACKEND=` Chooses a specific cryptography library to use for cryptographic - operations. Can be `OpenSSL` (https://www.openssl.org), + operations. Can be `OpenSSL` (https://www.openssl-library.org/), `Libgcrypt` (https://www.gnupg.org/), `WinCNG` (Windows Vista+), - `mbedTLS` (https://tls.mbed.org/) or blank to use any library available. + `mbedTLS` (https://www.trustedfirmware.org/projects/mbed-tls/) or + blank to use any library available. CMake will attempt to locate the libraries automatically. See [2] for more information.