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

tidy-up: fix typos (#886)

detected by codespell 2.2.4.
This commit is contained in:
Viktor Szakats
2023-03-27 19:26:58 +02:00
committed by GitHub
parent 2f16d8105c
commit 1d9af00609
37 changed files with 62 additions and 62 deletions

View File

@@ -392,7 +392,7 @@ _libssh2_cipher_cast5
CAST5-CBC algorithm identifier initializer.
#define with constant value of type _libssh2_cipher_type().
4.5) Tripple DES in CBC block mode.
4.5) Triple DES in CBC block mode.
LIBSSH2_3DES
#define as 1 if the crypto library supports TripleDES in CBC mode, else 0.
If defined as 0, the rest of this section can be omitted.
@@ -939,5 +939,5 @@ This function is for implementing key hash upgrading as defined in RFC 8332.
Based on the incoming key_method value, this function will return a
list of supported algorithms that can upgrade the original key method algorithm
as a comma seperated list, if there is no upgrade option this function should
as a comma separated list, if there is no upgrade option this function should
return NULL.

View File

@@ -264,7 +264,7 @@ Some ./configure options deserve additional comments:
Enabling this option will allow for "none" as a
negotiable method, however it still requires that the
method be advertized by the remote end and that no
method be advertised by the remote end and that no
more-preferable methods are available.
* --enable-mac-none
@@ -277,7 +277,7 @@ Some ./configure options deserve additional comments:
Enabling this option will allow for "none" as a
negotiable method, however it still requires that the
method be advertized by the remote end and that no
method be advertised by the remote end and that no
more-preferable methods are available.
* --with-libgcrypt

View File

@@ -82,7 +82,7 @@ The following options are available:
libssh2 by default as well.
Enabling this option will allow for "none" as a negotiable method,
however it still requires that the method be advertized by the
however it still requires that the method be advertised by the
remote end and that no more-preferable methods are available.
* `ENABLE_MAC_NONE=OFF`
@@ -93,7 +93,7 @@ The following options are available:
MAC hashes removes a layer of security.
Enabling this option will allow for "none" as a negotiable method,
however it still requires that the method be advertized by the
however it still requires that the method be advertised by the
remote end and that no more-preferable methods are available.
* `ENABLE_DEBUG_LOGGING=ON` in Debug, `=OFF` in Release

View File

@@ -41,7 +41,7 @@ At next SONAME bump
libssh2_poll()
libssh2_poll_channel_read()
libssh2_session_startup() (libssh2_session_handshake() is the replacement)
libssh2_banner_set() (libssh2_session_banner_set() is the repacement)
libssh2_banner_set() (libssh2_session_banner_set() is the replacement)
* Rename a few function:
@@ -60,7 +60,7 @@ At next SONAME bump
* remove the existing libssh2_scp_send_ex() function and rename
libssh2_scp_send64 to become the new libssh2_scp_send instead.
* remove the existing libssh2_knownhost_check() functin and rename
* remove the existing libssh2_knownhost_check() function and rename
libssh2_knownhost_checkp() to become the new libssh2_knownhost_check instead
Buffering Improvements