1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-07-31 00:03:08 +03:00

tidy-up: link updates (#1434)

This commit is contained in:
Viktor Szakats
2024-07-30 19:35:38 +02:00
committed by GitHub
parent e4c042f6c2
commit c905bfd27c
3 changed files with 5 additions and 4 deletions

View File

@ -212,7 +212,7 @@ jobs:
if: ${{ matrix.crypto == 'OpenSSL-3-no-deprecated' }} if: ${{ matrix.crypto == 'OpenSSL-3-no-deprecated' }}
run: | run: |
OPENSSLVER=openssl-3.2.0 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 cd $OPENSSLVER
./Configure no-deprecated \ ./Configure no-deprecated \
no-apps no-docs no-tests no-makedepend \ no-apps no-docs no-tests no-makedepend \

View File

@ -275,7 +275,7 @@ Some ./configure options deserve additional comments:
* --with-libssl-prefix=[DIR] * --with-libssl-prefix=[DIR]
libssh2 can use the OpenSSL library 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. One of the cryptographic libraries is required.
Configure will attempt to locate OpenSSL in the Configure will attempt to locate OpenSSL in the

View File

@ -67,9 +67,10 @@ The following options are available:
* `CRYPTO_BACKEND=` * `CRYPTO_BACKEND=`
Chooses a specific cryptography library to use for cryptographic 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+), `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] CMake will attempt to locate the libraries automatically. See [2]
for more information. for more information.