Spelling doc #3580
authorFdaSilvaYY <fdasilvayy@gmail.com>
Fri, 3 Nov 2017 18:56:56 +0000 (19:56 +0100)
committerBernd Edlinger <bernd.edlinger@hotmail.de>
Fri, 3 Nov 2017 18:56:56 +0000 (19:56 +0100)
Duplicated tests descriptions

Backport of #3580 to 1.1.0
plus a few other typo fixes found at fligth.

Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/4645)

23 files changed:
crypto/lhash/lhash.c
demos/bio/cmod.cnf
doc/apps/cms.pod
doc/apps/openssl.pod
doc/apps/x509v3_config.pod
doc/crypto/BIO_set_callback.pod
doc/crypto/PKCS7_sign.pod
doc/crypto/PKCS7_sign_add_signer.pod
doc/crypto/X509_get0_notBefore.pod
doc/crypto/d2i_X509.pod
doc/openssl-c-indent.el
doc/ssl/SSL_CONF_cmd.pod
doc/ssl/SSL_CTX_config.pod
test/asynciotest.c
test/recipes/70-test_sslmessages.t
test/recipes/80-test_pkcs12.t
test/recipes/tconversion.pl
test/ssl-tests/06-sni-ticket.conf.in
test/ssl-tests/08-npn.conf.in
test/ssl-tests/09-alpn.conf.in
test/ssl-tests/12-ct.conf.in
test/ssl-tests/13-fragmentation.conf.in
util/indent.pro

index 5bb20e1e7397f1a2cd2ec320f6b36131ad849ccf..edf24752fa3c59994e2825a76226a599f699fb1a 100644 (file)
@@ -16,7 +16,7 @@
 
 /*
  * A hashing implementation that appears to be based on the linear hashing
- * alogrithm:
+ * algorithm:
  * https://en.wikipedia.org/wiki/Linear_hashing
  *
  * Litwin, Witold (1980), "Linear hashing: A new tool for file and table
index 4c45dfb781522dd7cc527c642f6ecf3c3eb33360..39ac54edd9b509907e4f495e5fd3abd210fe7f7b 100644 (file)
@@ -5,7 +5,7 @@
 testapp = test_sect
 
 [test_sect]
-# list of confuration modules
+# list of configuration modules
 
 # SSL configuration module
 ssl_conf = ssl_sect
index 15e5e41976b74fa8586e995b266f21cfbd061826..96acd315d4d38c7d461d8c97f400cd5f95d743e7 100644 (file)
@@ -186,7 +186,7 @@ output an error.
 =item B<-EncryptedData_encrypt>
 
 Encrypt content using supplied symmetric key and algorithm using a CMS
-B<EncrytedData> type and output the content.
+B<EncryptedData> type and output the content.
 
 =item B<-sign_receipt>
 
index 9196547b8c2d5dc9073eb80f7eaf2205d118036b..6e822a61169fc21b8cefd2cd25c42f6994944a49 100644 (file)
@@ -204,7 +204,7 @@ Generate pseudo-random bytes.
 
 =item L<B<rehash>|rehash(1)>
 
-Create symbolic links to certficate and CRL files named by the hash values.
+Create symbolic links to certificate and CRL files named by the hash values.
 
 =item L<B<req>|req(1)>
 
index 17d9f1c3f0f33cb11383993f311596976835fb44..c0742c84da9e8e7aaa9b184a29ba351c40a97597 100644 (file)
@@ -352,7 +352,7 @@ Example:
  noticeNumbers=1,2,3,4
 
 The B<ia5org> option changes the type of the I<organization> field. In RFC2459
-it can only be of type DisplayText. In RFC3280 IA5Strring is also permissible.
+it can only be of type DisplayText. In RFC3280 IA5String is also permissible.
 Some software (for example some versions of MSIE) may require ia5org.
 
 =head2 Policy Constraints
index 3d158594062b0438c358704c34cc4e2953e5116c..27aa4f45dbf32946c6a0b7259698ca03cfc6110f 100644 (file)
@@ -20,8 +20,8 @@ BIO_callback_fn_ex, BIO_callback_fn
  void BIO_set_callback_ex(BIO *b, BIO_callback_fn_ex callback);
  BIO_callback_fn_ex BIO_get_callback_ex(const BIO *b);
 
- void BIO_set_callback(BIO *b, BIO_callack_fn cb);
- BIO_callack_fn BIO_get_callback(BIO *b);
+ void BIO_set_callback(BIO *b, BIO_callback_fn cb);
+ BIO_callback_fn BIO_get_callback(BIO *b);
  void BIO_set_callback_arg(BIO *b, char *arg);
  char *BIO_get_callback_arg(const BIO *b);
 
@@ -37,7 +37,7 @@ operation.
 
 BIO_set_callback() and BIO_get_callback() set and retrieve the old format BIO
 callback. New code should not use these functions, but they are retained for
-backwards compatbility. Any callback set via BIO_set_callback_ex() will get
+backwards compatibility. Any callback set via BIO_set_callback_ex() will get
 called in preference to any set by BIO_set_callback().
 
 BIO_set_callback_arg() and BIO_get_callback_arg() are macros which can be
index b5a52da9a2793d012a1a4934f24d0be9f4fd6b3d..f319f664b9b6f11da12679213c06746060ae67be 100644 (file)
@@ -46,7 +46,7 @@ required by the S/MIME specifications) if B<PKCS7_BINARY> is set no translation
 occurs. This option should be used if the supplied data is in binary format
 otherwise the translation will corrupt it.
 
-The signedData structure includes several PKCS#7 autenticatedAttributes
+The signedData structure includes several PKCS#7 authenticatedAttributes
 including the signing time, the PKCS#7 content type and the supported list of
 ciphers in an SMIMECapabilities attribute. If B<PKCS7_NOATTR> is set then no
 authenticatedAttributes will be used. If B<PKCS7_NOSMIMECAP> is set then just
index c2a06e7a776d884bd2227543c9f4826e73e2377c..88fef771b0600ce08181b38cb8ae4a09b289439e 100644 (file)
@@ -55,7 +55,7 @@ B<signcert> parameter though. This can reduce the size of the signature if the
 signers certificate can be obtained by other means: for example a previously
 signed message.
 
-The signedData structure includes several PKCS#7 autenticatedAttributes
+The signedData structure includes several PKCS#7 authenticatedAttributes
 including the signing time, the PKCS#7 content type and the supported list of
 ciphers in an SMIMECapabilities attribute. If B<PKCS7_NOATTR> is set then no
 authenticatedAttributes will be used. If B<PKCS7_NOSMIMECAP> is set then just
index 82502f6588b0e47675b65fc70ed72ffea1d1a47a..0427d4122a66df70651df1c0c7963bb229c653da 100644 (file)
@@ -36,7 +36,7 @@ the call.
 X509_getm_notBefore() and X509_getm_notAfter() are similar to
 X509_get0_notBefore() and X509_get0_notAfter() except they return
 non-constant mutable references to the associated date field of
-the certficate.
+the certificate.
 
 X509_set1_notBefore() and X509_set1_notAfter() set the B<notBefore>
 and B<notAfter> fields of B<x> to B<tm>. Ownership of the passed
index d75c7f39246323b3922155e834163c06592daa2b..93bcc8ee69b8da7c22486f63b1a6b44a1e80d0bf 100644 (file)
@@ -466,7 +466,7 @@ Represents a PKCS#1 RSA public key structure.
 
 =item B<X509_ALGOR>
 
-Represents an B<AlogrithmIdentifier> structure as used in IETF RFC 6960 and
+Represents an B<AlgorithmIdentifier> structure as used in IETF RFC 6960 and
 elsewhere.
 
 =item B<X509_Name>
index c28814a67dd2ecbbea2f50e8ae0afb63b488c8a9..cca118303e30cba50d288f9ef04aea69080c6cdb 100644 (file)
@@ -2,7 +2,7 @@
 ;;;
 ;;; This definition is for the "CC mode" package, which is the default
 ;;; mode for editing C source files in Emacs 20, not for the older
-;;; c-mode.el (which was the default in less recent releaes of Emacs 19).
+;;; c-mode.el (which was the default in less recent release of Emacs 19).
 ;;;
 ;;; Recommended use is to add this line in your .emacs:
 ;;;
index d8c0e9b95df4121e57b3883c99719f87fd0d3c80..27a99334e993ea2669fe837f9e89696d3d404478 100644 (file)
@@ -424,7 +424,7 @@ SSLv3 is B<always> disabled and attempt to override this by the user are
 ignored.
 
 By checking the return code of SSL_CTX_cmd() it is possible to query if a
-given B<cmd> is recognised, this is useful is SSL_CTX_cmd() values are
+given B<cmd> is recognised, this is useful if SSL_CTX_cmd() values are
 mixed with additional application specific operations.
 
 For example an application might call SSL_CTX_cmd() and if it returns
index 802c4c359eb457f389169e50388360bd0357752f..ec744ad033ac3ca450385b861041738a7566a037 100644 (file)
@@ -40,7 +40,7 @@ If the file "config.cnf" contains the following:
  testapp = test_sect
 
  [test_sect]
- # list of confuration modules
+ # list of configuration modules
 
  ssl_conf = ssl_sect
 
index 133e3d5a97df60ef955f0b162e5a1bda6226b952..e2b6b0b88b5fd30086a771f3706265330df7498b 100644 (file)
@@ -326,7 +326,7 @@ int main(int argc, char *argv[])
                 goto end;
             }
             /*
-             * Now read the test data. It may take more attemps here because
+             * Now read the test data. It may take more attempts here because
              * it could fail once for each byte read, including all overhead
              * bytes from the record header/padding etc.
              */
index c4adf58c6f06b34733776b642835ede012685b00..3acbac141f6216d9d60aa9535aef0e62e3ad173d 100644 (file)
@@ -98,7 +98,7 @@ checkmessages(CLIENT_AUTH_HANDSHAKE, "Client auth handshake test");
 $proxy->clear();
 $proxy->reneg(1);
 $proxy->start();
-checkmessages(RENEG_HANDSHAKE, "Rengotiation handshake test");
+checkmessages(RENEG_HANDSHAKE, "Renegotiation handshake test");
 
 #Test 5: A handshake with a renegotiation and client auth
 $proxy->clear();
index be9a72c8e283cd33d1ec6b5cb1ef3dc4a989a678..5bcfb695e075184e41fea88b574ed96d5ebf1e97 100644 (file)
@@ -42,7 +42,7 @@ if (eval { require Win32::API; 1; }) {
         $pass = Encode::encode("cp1253",Encode::decode("utf-8",$pass));
     }
 } else {
-    # Running MinGW tests transparenly under Wine apparently requires
+    # Running MinGW tests transparently under Wine apparently requires
     # UTF-8 locale...
 
     foreach(`locale -a`) {
index ee675e9327e9756eb6ec79f4090cecaade1023b3..e471160619434af97e31349bf26e64a72a6bc809 100644 (file)
@@ -37,7 +37,7 @@ sub tconversion {
        + $n                    # initial conversions from p to all forms (A)
        + $n*$n                 # conversion from result of A to all forms (B)
        + 1                     # comparing original test file to p form of A
-       + $n*($n-1);            # comparing first conversion to each fom in A with B
+       + $n*($n-1);            # comparing first conversion to each form in A with B
     $totaltests-- if ($testtype eq "p7d"); # no comparison of original test file
     plan tests => $totaltests;
 
index ccb9cbdb7b072967105a9d83ae5063303c4d8a5e..ea92b627b4ff2d5478fa97bfe3852c7c6375422a 100644 (file)
@@ -7,7 +7,7 @@
 # https://www.openssl.org/source/license.html
 
 
-## Test version negotiation
+## Test Session ticket
 
 use strict;
 use warnings;
index 8a1f4ec91630bade4fe28c2bd90069617a7f88ec..bcb632f051ddc665abb7ec5d2fba1a0271899bbf 100644 (file)
@@ -7,7 +7,7 @@
 # https://www.openssl.org/source/license.html
 
 
-## Test version negotiation
+## Test NPN negotiation
 
 use strict;
 use warnings;
index 18560e1801b1b660b6e8e7caf48dcc39f9a504a0..37035f1d84d4b7a8adb7b9f18be2f580069241e3 100644 (file)
@@ -7,7 +7,7 @@
 # https://www.openssl.org/source/license.html
 
 
-## Test version negotiation
+## Test ALPN negotiation
 
 use strict;
 use warnings;
index 7c0304995ff9b580db568c301ada9cdd93243d73..d412dfd058019302f69ee84b64bfeb5711655e8d 100644 (file)
@@ -7,7 +7,7 @@
 # https://www.openssl.org/source/license.html
 
 
-## Test version negotiation
+## Test CT support
 
 use strict;
 use warnings;
index 645163ca893c0dd2ac554813c33e8065b04aa24a..6c2501b8b0c2853282a2e18d367ed963c1c8fbe4 100644 (file)
@@ -7,7 +7,7 @@
 # https://www.openssl.org/source/license.html
 
 
-## Test version negotiation
+## Test packet fragmentation
 
 use strict;
 use warnings;
index de0c7dbdc78d247381d91c6fd1c73384a6b3eac2..476bcacc8298c5eff012ae5ea65a0af7a68a8e26 100644 (file)
 -T asn1_ps_func
 -T bio_dgram_data
 -T bio_info_cb
--T BIO_callack_fn
+-T BIO_callback_fn
 -T char_io
 -T conf_finish_func
 -T conf_init_func