summaryrefslogtreecommitdiffstats
path: root/doc/man7/EVP_KDF_SSHKDF.pod
diff options
context:
space:
mode:
authorAntoine Cœur <coeur@gmx.fr>2019-07-02 16:04:04 +0800
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2019-07-02 14:22:29 +0200
commitc2969ff6e70b10f71fbd97c1d0b0cffc92bd69df (patch)
tree31e1c94c18598574c6074468cffbf16602f98a15 /doc/man7/EVP_KDF_SSHKDF.pod
parentf663ddc7b00a2d75c1e7d868b73b24adc3f62095 (diff)
Fix Typos
CLA: trivial Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/9288)
Diffstat (limited to 'doc/man7/EVP_KDF_SSHKDF.pod')
-rw-r--r--doc/man7/EVP_KDF_SSHKDF.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man7/EVP_KDF_SSHKDF.pod b/doc/man7/EVP_KDF_SSHKDF.pod
index 9c9734e7c3..e233e86f03 100644
--- a/doc/man7/EVP_KDF_SSHKDF.pod
+++ b/doc/man7/EVP_KDF_SSHKDF.pod
@@ -68,12 +68,12 @@ Sets the type for the SSHHKDF operation. There are six supported types:
=over 4
-=item EVP_KDF_SSHKDF_TYPE_ININITAL_IV_CLI_TO_SRV
+=item EVP_KDF_SSHKDF_TYPE_INITIAL_IV_CLI_TO_SRV
The Initial IV from client to server.
A single char of value 65 (ASCII char 'A').
-=item EVP_KDF_SSHKDF_TYPE_ININITAL_IV_SRV_TO_CLI
+=item EVP_KDF_SSHKDF_TYPE_INITIAL_IV_SRV_TO_CLI
The Initial IV from server to client
A single char of value 66 (ASCII char 'B').
@@ -103,7 +103,7 @@ A single char of value 70 (ASCII char 'F').
EVP_KDF_ctrl_str() type string: "type"
The value is a string of length one character. The only valid values
-are the numerical values of the ASCII caracters: "A" (65) to "F" (70).
+are the numerical values of the ASCII characters: "A" (65) to "F" (70).
=back
@@ -142,7 +142,7 @@ This example derives an 8 byte IV using SHA-256 with a 1K "key" and appropriate
if (EVP_KDF_CTX_set1_sshkdf_session_id(kctx, session_id, 32) <= 0)
/* Error */
if (EVP_KDF_CTX_set_sshkdf_type(kctx,
- EVP_KDF_SSHKDF_TYPE_ININITAL_IV_CLI_TO_SRV) <= 0)
+ EVP_KDF_SSHKDF_TYPE_INITIAL_IV_CLI_TO_SRV) <= 0)
/* Error */
if (EVP_KDF_derive(kctx, out, &outlen) <= 0)
/* Error */