4151 lines
		
	
	
	
		
			176 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			4151 lines
		
	
	
	
		
			176 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- crypto/openssl/crypto/engine/eng_cryptodev.c.orig
 | |
| +++ crypto/openssl/crypto/engine/eng_cryptodev.c
 | |
| @@ -939,7 +939,7 @@
 | |
|      if (fstate->mac_len != 0) {
 | |
|          if (fstate->mac_data != NULL) {
 | |
|              dstate->mac_data = OPENSSL_malloc(fstate->mac_len);
 | |
| -            if (dstate->ac_data == NULL) {
 | |
| +            if (dstate->mac_data == NULL) {
 | |
|                  printf("cryptodev_digest_init: malloc failed\n");
 | |
|                  return 0;
 | |
|              }
 | |
| --- crypto/openssl/crypto/x509/x509_vfy.c.orig
 | |
| +++ crypto/openssl/crypto/x509/x509_vfy.c
 | |
| @@ -1124,10 +1124,10 @@
 | |
|          crl = sk_X509_CRL_value(crls, i);
 | |
|          reasons = *preasons;
 | |
|          crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
 | |
| -        if (crl_score < best_score)
 | |
| +        if (crl_score < best_score || crl_score == 0)
 | |
|              continue;
 | |
|          /* If current CRL is equivalent use it if it is newer */
 | |
| -        if (crl_score == best_score) {
 | |
| +        if (crl_score == best_score && best_crl != NULL) {
 | |
|              int day, sec;
 | |
|              if (ASN1_TIME_diff(&day, &sec, X509_CRL_get_lastUpdate(best_crl),
 | |
|                                 X509_CRL_get_lastUpdate(crl)) == 0)
 | |
| --- crypto/openssl/crypto/opensslv.h.orig
 | |
| +++ crypto/openssl/crypto/opensslv.h
 | |
| @@ -30,11 +30,11 @@
 | |
|   * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for
 | |
|   *  major minor fix final patch/beta)
 | |
|   */
 | |
| -# define OPENSSL_VERSION_NUMBER  0x1000209fL
 | |
| +# define OPENSSL_VERSION_NUMBER  0x100020afL
 | |
|  # ifdef OPENSSL_FIPS
 | |
| -#  define OPENSSL_VERSION_TEXT    "OpenSSL 1.0.2i-fips  22 Sep 2016"
 | |
| +#  define OPENSSL_VERSION_TEXT    "OpenSSL 1.0.2j-fips  26 Sep 2016"
 | |
|  # else
 | |
| -#  define OPENSSL_VERSION_TEXT    "OpenSSL 1.0.2i-freebsd  22 Sep 2016"
 | |
| +#  define OPENSSL_VERSION_TEXT    "OpenSSL 1.0.2j-freebsd  26 Sep 2016"
 | |
|  # endif
 | |
|  # define OPENSSL_VERSION_PTEXT   " part of " OPENSSL_VERSION_TEXT
 | |
|  
 | |
| --- crypto/openssl/ssl/t1_ext.c.orig
 | |
| +++ crypto/openssl/ssl/t1_ext.c
 | |
| @@ -275,7 +275,9 @@
 | |
|      case TLSEXT_TYPE_ec_point_formats:
 | |
|      case TLSEXT_TYPE_elliptic_curves:
 | |
|      case TLSEXT_TYPE_heartbeat:
 | |
| +# ifndef OPENSSL_NO_NEXTPROTONEG
 | |
|      case TLSEXT_TYPE_next_proto_neg:
 | |
| +# endif
 | |
|      case TLSEXT_TYPE_padding:
 | |
|      case TLSEXT_TYPE_renegotiate:
 | |
|      case TLSEXT_TYPE_server_name:
 | |
| --- crypto/openssl/CHANGES.orig
 | |
| +++ crypto/openssl/CHANGES
 | |
| @@ -2,6 +2,18 @@
 | |
|   OpenSSL CHANGES
 | |
|   _______________
 | |
|  
 | |
| + Changes between 1.0.2i and 1.0.2j [26 Sep 2016]
 | |
| +
 | |
| +  *) Missing CRL sanity check
 | |
| +
 | |
| +     A bug fix which included a CRL sanity check was added to OpenSSL 1.1.0
 | |
| +     but was omitted from OpenSSL 1.0.2i. As a result any attempt to use
 | |
| +     CRLs in OpenSSL 1.0.2i will crash with a null pointer exception.
 | |
| +
 | |
| +     This issue only affects the OpenSSL 1.0.2i
 | |
| +     (CVE-2016-7052)
 | |
| +     [Matt Caswell]
 | |
| +
 | |
|   Changes between 1.0.2h and 1.0.2i [22 Sep 2016]
 | |
|  
 | |
|    *) OCSP Status Request extension unbounded memory growth
 | |
| --- crypto/openssl/Makefile.orig
 | |
| +++ crypto/openssl/Makefile
 | |
| @@ -4,7 +4,7 @@
 | |
|  ## Makefile for OpenSSL
 | |
|  ##
 | |
|  
 | |
| -VERSION=1.0.2i
 | |
| +VERSION=1.0.2j
 | |
|  MAJOR=1
 | |
|  MINOR=0.2
 | |
|  SHLIB_VERSION_NUMBER=1.0.0
 | |
| --- crypto/openssl/NEWS.orig
 | |
| +++ crypto/openssl/NEWS
 | |
| @@ -5,6 +5,10 @@
 | |
|    This file gives a brief overview of the major changes between each OpenSSL
 | |
|    release. For more details please read the CHANGES file.
 | |
|  
 | |
| +  Major changes between OpenSSL 1.0.2i and OpenSSL 1.0.2j [26 Sep 2016]
 | |
| +
 | |
| +      o Fix Use After Free for large message sizes (CVE-2016-6309)
 | |
| +
 | |
|    Major changes between OpenSSL 1.0.2h and OpenSSL 1.0.2i [22 Sep 2016]
 | |
|  
 | |
|        o OCSP Status Request extension unbounded memory growth (CVE-2016-6304)
 | |
| --- crypto/openssl/README.orig
 | |
| +++ crypto/openssl/README
 | |
| @@ -1,5 +1,5 @@
 | |
|  
 | |
| - OpenSSL 1.0.2i 22 Sep 2016
 | |
| + OpenSSL 1.0.2j 26 Sep 2016
 | |
|  
 | |
|   Copyright (c) 1998-2015 The OpenSSL Project
 | |
|   Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
 | |
| --- secure/lib/libcrypto/man/ASN1_OBJECT_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/ASN1_OBJECT_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ASN1_OBJECT_new 3"
 | |
| -.TH ASN1_OBJECT_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ASN1_OBJECT_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ASN1_STRING_length.3.orig
 | |
| +++ secure/lib/libcrypto/man/ASN1_STRING_length.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ASN1_STRING_length 3"
 | |
| -.TH ASN1_STRING_length 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ASN1_STRING_length 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ASN1_STRING_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/ASN1_STRING_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ASN1_STRING_new 3"
 | |
| -.TH ASN1_STRING_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ASN1_STRING_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ASN1_STRING_print_ex.3.orig
 | |
| +++ secure/lib/libcrypto/man/ASN1_STRING_print_ex.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ASN1_STRING_print_ex 3"
 | |
| -.TH ASN1_STRING_print_ex 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ASN1_STRING_print_ex 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ASN1_TIME_set.3.orig
 | |
| +++ secure/lib/libcrypto/man/ASN1_TIME_set.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ASN1_TIME_set 3"
 | |
| -.TH ASN1_TIME_set 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ASN1_TIME_set 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ASN1_generate_nconf.3.orig
 | |
| +++ secure/lib/libcrypto/man/ASN1_generate_nconf.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ASN1_generate_nconf 3"
 | |
| -.TH ASN1_generate_nconf 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ASN1_generate_nconf 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_ctrl.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_ctrl.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_ctrl 3"
 | |
| -.TH BIO_ctrl 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_ctrl 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_f_base64.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_f_base64.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_f_base64 3"
 | |
| -.TH BIO_f_base64 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_f_base64 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_f_buffer.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_f_buffer.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_f_buffer 3"
 | |
| -.TH BIO_f_buffer 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_f_buffer 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_f_cipher.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_f_cipher.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_f_cipher 3"
 | |
| -.TH BIO_f_cipher 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_f_cipher 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_f_md.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_f_md.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_f_md 3"
 | |
| -.TH BIO_f_md 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_f_md 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_f_null.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_f_null.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_f_null 3"
 | |
| -.TH BIO_f_null 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_f_null 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_f_ssl.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_f_ssl.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_f_ssl 3"
 | |
| -.TH BIO_f_ssl 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_f_ssl 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_find_type.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_find_type.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_find_type 3"
 | |
| -.TH BIO_find_type 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_find_type 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_new 3"
 | |
| -.TH BIO_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_new_CMS.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_new_CMS.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_new_CMS 3"
 | |
| -.TH BIO_new_CMS 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_new_CMS 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_push.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_push.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_push 3"
 | |
| -.TH BIO_push 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_push 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_read.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_read.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_read 3"
 | |
| -.TH BIO_read 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_read 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_accept.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_accept.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_accept 3"
 | |
| -.TH BIO_s_accept 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_accept 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_bio.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_bio.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_bio 3"
 | |
| -.TH BIO_s_bio 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_bio 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_connect.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_connect.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_connect 3"
 | |
| -.TH BIO_s_connect 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_connect 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_fd.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_fd.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_fd 3"
 | |
| -.TH BIO_s_fd 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_fd 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_file.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_file.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_file 3"
 | |
| -.TH BIO_s_file 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_file 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_mem.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_mem.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_mem 3"
 | |
| -.TH BIO_s_mem 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_mem 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_null.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_null.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_null 3"
 | |
| -.TH BIO_s_null 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_null 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_s_socket.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_s_socket.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_s_socket 3"
 | |
| -.TH BIO_s_socket 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_s_socket 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_set_callback.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_set_callback.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_set_callback 3"
 | |
| -.TH BIO_set_callback 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_set_callback 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BIO_should_retry.3.orig
 | |
| +++ secure/lib/libcrypto/man/BIO_should_retry.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BIO_should_retry 3"
 | |
| -.TH BIO_should_retry 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BIO_should_retry 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_BLINDING_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_BLINDING_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_BLINDING_new 3"
 | |
| -.TH BN_BLINDING_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_BLINDING_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_CTX_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_CTX_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_CTX_new 3"
 | |
| -.TH BN_CTX_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_CTX_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_CTX_start.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_CTX_start.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_CTX_start 3"
 | |
| -.TH BN_CTX_start 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_CTX_start 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_add.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_add.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_add 3"
 | |
| -.TH BN_add 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_add 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_add_word.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_add_word.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_add_word 3"
 | |
| -.TH BN_add_word 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_add_word 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_bn2bin.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_bn2bin.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_bn2bin 3"
 | |
| -.TH BN_bn2bin 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_bn2bin 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_cmp.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_cmp.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_cmp 3"
 | |
| -.TH BN_cmp 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_cmp 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_copy.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_copy.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_copy 3"
 | |
| -.TH BN_copy 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_copy 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_generate_prime.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_generate_prime.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_generate_prime 3"
 | |
| -.TH BN_generate_prime 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_generate_prime 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_mod_inverse.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_mod_inverse.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_mod_inverse 3"
 | |
| -.TH BN_mod_inverse 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_mod_inverse 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_mod_mul_montgomery.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_mod_mul_montgomery.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_mod_mul_montgomery 3"
 | |
| -.TH BN_mod_mul_montgomery 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_mod_mul_montgomery 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_mod_mul_reciprocal 3"
 | |
| -.TH BN_mod_mul_reciprocal 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_mod_mul_reciprocal 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_new 3"
 | |
| -.TH BN_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_num_bytes.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_num_bytes.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_num_bytes 3"
 | |
| -.TH BN_num_bytes 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_num_bytes 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_rand.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_rand.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_rand 3"
 | |
| -.TH BN_rand 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_rand 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_set_bit.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_set_bit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_set_bit 3"
 | |
| -.TH BN_set_bit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_set_bit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_swap.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_swap.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_swap 3"
 | |
| -.TH BN_swap 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_swap 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/BN_zero.3.orig
 | |
| +++ secure/lib/libcrypto/man/BN_zero.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "BN_zero 3"
 | |
| -.TH BN_zero 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH BN_zero 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_add0_cert.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_add0_cert.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_add0_cert 3"
 | |
| -.TH CMS_add0_cert 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_add0_cert 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_add1_recipient_cert.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_add1_recipient_cert.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_add1_recipient_cert 3"
 | |
| -.TH CMS_add1_recipient_cert 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_add1_recipient_cert 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_add1_signer.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_add1_signer.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_add1_signer 3"
 | |
| -.TH CMS_add1_signer 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_add1_signer 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_compress.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_compress.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_compress 3"
 | |
| -.TH CMS_compress 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_compress 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_decrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_decrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_decrypt 3"
 | |
| -.TH CMS_decrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_decrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_encrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_encrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_encrypt 3"
 | |
| -.TH CMS_encrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_encrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_final.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_final.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_final 3"
 | |
| -.TH CMS_final 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_final 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_get0_RecipientInfos 3"
 | |
| -.TH CMS_get0_RecipientInfos 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_get0_RecipientInfos 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_get0_SignerInfos.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_get0_SignerInfos.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_get0_SignerInfos 3"
 | |
| -.TH CMS_get0_SignerInfos 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_get0_SignerInfos 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_get0_type.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_get0_type.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_get0_type 3"
 | |
| -.TH CMS_get0_type 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_get0_type 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_get1_ReceiptRequest 3"
 | |
| -.TH CMS_get1_ReceiptRequest 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_get1_ReceiptRequest 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_sign.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_sign.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_sign 3"
 | |
| -.TH CMS_sign 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_sign 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_sign_receipt.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_sign_receipt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_sign_receipt 3"
 | |
| -.TH CMS_sign_receipt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_sign_receipt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_uncompress.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_uncompress.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_uncompress 3"
 | |
| -.TH CMS_uncompress 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_uncompress 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_verify.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_verify.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_verify 3"
 | |
| -.TH CMS_verify 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_verify 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CMS_verify_receipt.3.orig
 | |
| +++ secure/lib/libcrypto/man/CMS_verify_receipt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS_verify_receipt 3"
 | |
| -.TH CMS_verify_receipt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS_verify_receipt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CONF_modules_free.3.orig
 | |
| +++ secure/lib/libcrypto/man/CONF_modules_free.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CONF_modules_free 3"
 | |
| -.TH CONF_modules_free 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CONF_modules_free 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CONF_modules_load_file.3.orig
 | |
| +++ secure/lib/libcrypto/man/CONF_modules_load_file.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CONF_modules_load_file 3"
 | |
| -.TH CONF_modules_load_file 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CONF_modules_load_file 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/CRYPTO_set_ex_data.3.orig
 | |
| +++ secure/lib/libcrypto/man/CRYPTO_set_ex_data.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CRYPTO_set_ex_data 3"
 | |
| -.TH CRYPTO_set_ex_data 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CRYPTO_set_ex_data 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DH_generate_key.3.orig
 | |
| +++ secure/lib/libcrypto/man/DH_generate_key.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DH_generate_key 3"
 | |
| -.TH DH_generate_key 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DH_generate_key 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DH_generate_parameters.3.orig
 | |
| +++ secure/lib/libcrypto/man/DH_generate_parameters.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DH_generate_parameters 3"
 | |
| -.TH DH_generate_parameters 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DH_generate_parameters 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DH_get_ex_new_index.3.orig
 | |
| +++ secure/lib/libcrypto/man/DH_get_ex_new_index.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DH_get_ex_new_index 3"
 | |
| -.TH DH_get_ex_new_index 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DH_get_ex_new_index 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DH_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/DH_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DH_new 3"
 | |
| -.TH DH_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DH_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DH_set_method.3.orig
 | |
| +++ secure/lib/libcrypto/man/DH_set_method.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DH_set_method 3"
 | |
| -.TH DH_set_method 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DH_set_method 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DH_size.3.orig
 | |
| +++ secure/lib/libcrypto/man/DH_size.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DH_size 3"
 | |
| -.TH DH_size 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DH_size 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_SIG_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_SIG_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_SIG_new 3"
 | |
| -.TH DSA_SIG_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_SIG_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_do_sign.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_do_sign.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_do_sign 3"
 | |
| -.TH DSA_do_sign 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_do_sign 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_dup_DH.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_dup_DH.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_dup_DH 3"
 | |
| -.TH DSA_dup_DH 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_dup_DH 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_generate_key.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_generate_key.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_generate_key 3"
 | |
| -.TH DSA_generate_key 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_generate_key 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_generate_parameters.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_generate_parameters.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_generate_parameters 3"
 | |
| -.TH DSA_generate_parameters 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_generate_parameters 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_get_ex_new_index.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_get_ex_new_index.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_get_ex_new_index 3"
 | |
| -.TH DSA_get_ex_new_index 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_get_ex_new_index 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_new 3"
 | |
| -.TH DSA_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_set_method.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_set_method.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_set_method 3"
 | |
| -.TH DSA_set_method 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_set_method 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_sign.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_sign.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_sign 3"
 | |
| -.TH DSA_sign 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_sign 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/DSA_size.3.orig
 | |
| +++ secure/lib/libcrypto/man/DSA_size.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA_size 3"
 | |
| -.TH DSA_size 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA_size 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EC_GFp_simple_method.3.orig
 | |
| +++ secure/lib/libcrypto/man/EC_GFp_simple_method.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EC_GFp_simple_method 3"
 | |
| -.TH EC_GFp_simple_method 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EC_GFp_simple_method 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EC_GROUP_copy.3.orig
 | |
| +++ secure/lib/libcrypto/man/EC_GROUP_copy.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EC_GROUP_copy 3"
 | |
| -.TH EC_GROUP_copy 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EC_GROUP_copy 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EC_GROUP_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/EC_GROUP_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EC_GROUP_new 3"
 | |
| -.TH EC_GROUP_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EC_GROUP_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EC_KEY_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/EC_KEY_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EC_KEY_new 3"
 | |
| -.TH EC_KEY_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EC_KEY_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EC_POINT_add.3.orig
 | |
| +++ secure/lib/libcrypto/man/EC_POINT_add.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EC_POINT_add 3"
 | |
| -.TH EC_POINT_add 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EC_POINT_add 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EC_POINT_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/EC_POINT_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EC_POINT_new 3"
 | |
| -.TH EC_POINT_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EC_POINT_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_GET_LIB.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_GET_LIB.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_GET_LIB 3"
 | |
| -.TH ERR_GET_LIB 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_GET_LIB 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_clear_error.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_clear_error.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_clear_error 3"
 | |
| -.TH ERR_clear_error 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_clear_error 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_error_string.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_error_string.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_error_string 3"
 | |
| -.TH ERR_error_string 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_error_string 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_get_error.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_get_error.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_get_error 3"
 | |
| -.TH ERR_get_error 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_get_error 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_load_crypto_strings.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_load_crypto_strings.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_load_crypto_strings 3"
 | |
| -.TH ERR_load_crypto_strings 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_load_crypto_strings 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_load_strings.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_load_strings.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_load_strings 3"
 | |
| -.TH ERR_load_strings 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_load_strings 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_print_errors.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_print_errors.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_print_errors 3"
 | |
| -.TH ERR_print_errors 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_print_errors 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_put_error.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_put_error.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_put_error 3"
 | |
| -.TH ERR_put_error 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_put_error 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_remove_state.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_remove_state.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_remove_state 3"
 | |
| -.TH ERR_remove_state 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_remove_state 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ERR_set_mark.3.orig
 | |
| +++ secure/lib/libcrypto/man/ERR_set_mark.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERR_set_mark 3"
 | |
| -.TH ERR_set_mark 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERR_set_mark 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_BytesToKey.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_BytesToKey.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_BytesToKey 3"
 | |
| -.TH EVP_BytesToKey 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_BytesToKey 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_DigestInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_DigestInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_DigestInit 3"
 | |
| -.TH EVP_DigestInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_DigestInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_DigestSignInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_DigestSignInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_DigestSignInit 3"
 | |
| -.TH EVP_DigestSignInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_DigestSignInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_DigestVerifyInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_DigestVerifyInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_DigestVerifyInit 3"
 | |
| -.TH EVP_DigestVerifyInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_DigestVerifyInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_EncodeInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_EncodeInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_EncodeInit 3"
 | |
| -.TH EVP_EncodeInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_EncodeInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_EncryptInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_EncryptInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_EncryptInit 3"
 | |
| -.TH EVP_EncryptInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_EncryptInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_OpenInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_OpenInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_OpenInit 3"
 | |
| -.TH EVP_OpenInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_OpenInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_CTX_ctrl 3"
 | |
| -.TH EVP_PKEY_CTX_ctrl 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_CTX_ctrl 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_CTX_new 3"
 | |
| -.TH EVP_PKEY_CTX_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_CTX_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_cmp.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_cmp.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_cmp 3"
 | |
| -.TH EVP_PKEY_cmp 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_cmp 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_decrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_decrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_decrypt 3"
 | |
| -.TH EVP_PKEY_decrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_decrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_derive.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_derive.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_derive 3"
 | |
| -.TH EVP_PKEY_derive 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_derive 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_encrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_encrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_encrypt 3"
 | |
| -.TH EVP_PKEY_encrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_encrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_get_default_digest 3"
 | |
| -.TH EVP_PKEY_get_default_digest 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_get_default_digest 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_keygen.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_keygen.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_keygen 3"
 | |
| -.TH EVP_PKEY_keygen 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_keygen 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_new 3"
 | |
| -.TH EVP_PKEY_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_print_private.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_print_private.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_print_private 3"
 | |
| -.TH EVP_PKEY_print_private 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_print_private 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_set1_RSA 3"
 | |
| -.TH EVP_PKEY_set1_RSA 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_set1_RSA 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_sign.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_sign.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_sign 3"
 | |
| -.TH EVP_PKEY_sign 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_sign 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_verify.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_verify.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_verify 3"
 | |
| -.TH EVP_PKEY_verify 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_verify 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_PKEY_verify_recover.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_PKEY_verify_recover 3"
 | |
| -.TH EVP_PKEY_verify_recover 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_PKEY_verify_recover 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_SealInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_SealInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_SealInit 3"
 | |
| -.TH EVP_SealInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_SealInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_SignInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_SignInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_SignInit 3"
 | |
| -.TH EVP_SignInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_SignInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/EVP_VerifyInit.3.orig
 | |
| +++ secure/lib/libcrypto/man/EVP_VerifyInit.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EVP_VerifyInit 3"
 | |
| -.TH EVP_VerifyInit 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EVP_VerifyInit 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OBJ_nid2obj.3.orig
 | |
| +++ secure/lib/libcrypto/man/OBJ_nid2obj.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OBJ_nid2obj 3"
 | |
| -.TH OBJ_nid2obj 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OBJ_nid2obj 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OPENSSL_Applink.3.orig
 | |
| +++ secure/lib/libcrypto/man/OPENSSL_Applink.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OPENSSL_Applink 3"
 | |
| -.TH OPENSSL_Applink 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OPENSSL_Applink 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3.orig
 | |
| +++ secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OPENSSL_VERSION_NUMBER 3"
 | |
| -.TH OPENSSL_VERSION_NUMBER 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OPENSSL_VERSION_NUMBER 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OPENSSL_config.3.orig
 | |
| +++ secure/lib/libcrypto/man/OPENSSL_config.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OPENSSL_config 3"
 | |
| -.TH OPENSSL_config 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OPENSSL_config 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OPENSSL_ia32cap.3.orig
 | |
| +++ secure/lib/libcrypto/man/OPENSSL_ia32cap.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OPENSSL_ia32cap 3"
 | |
| -.TH OPENSSL_ia32cap 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OPENSSL_ia32cap 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OPENSSL_instrument_bus.3.orig
 | |
| +++ secure/lib/libcrypto/man/OPENSSL_instrument_bus.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OPENSSL_instrument_bus 3"
 | |
| -.TH OPENSSL_instrument_bus 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OPENSSL_instrument_bus 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3.orig
 | |
| +++ secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OPENSSL_load_builtin_modules 3"
 | |
| -.TH OPENSSL_load_builtin_modules 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OPENSSL_load_builtin_modules 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3.orig
 | |
| +++ secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OpenSSL_add_all_algorithms 3"
 | |
| -.TH OpenSSL_add_all_algorithms 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OpenSSL_add_all_algorithms 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3.orig
 | |
| +++ secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PEM_write_bio_CMS_stream 3"
 | |
| -.TH PEM_write_bio_CMS_stream 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PEM_write_bio_CMS_stream 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3.orig
 | |
| +++ secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PEM_write_bio_PKCS7_stream 3"
 | |
| -.TH PEM_write_bio_PKCS7_stream 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PEM_write_bio_PKCS7_stream 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PKCS12_create.3.orig
 | |
| +++ secure/lib/libcrypto/man/PKCS12_create.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS12_create 3"
 | |
| -.TH PKCS12_create 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS12_create 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PKCS12_parse.3.orig
 | |
| +++ secure/lib/libcrypto/man/PKCS12_parse.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS12_parse 3"
 | |
| -.TH PKCS12_parse 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS12_parse 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PKCS7_decrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/PKCS7_decrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS7_decrypt 3"
 | |
| -.TH PKCS7_decrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS7_decrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PKCS7_encrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/PKCS7_encrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS7_encrypt 3"
 | |
| -.TH PKCS7_encrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS7_encrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PKCS7_sign.3.orig
 | |
| +++ secure/lib/libcrypto/man/PKCS7_sign.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS7_sign 3"
 | |
| -.TH PKCS7_sign 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS7_sign 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PKCS7_sign_add_signer.3.orig
 | |
| +++ secure/lib/libcrypto/man/PKCS7_sign_add_signer.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS7_sign_add_signer 3"
 | |
| -.TH PKCS7_sign_add_signer 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS7_sign_add_signer 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/PKCS7_verify.3.orig
 | |
| +++ secure/lib/libcrypto/man/PKCS7_verify.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS7_verify 3"
 | |
| -.TH PKCS7_verify 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS7_verify 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RAND_add.3.orig
 | |
| +++ secure/lib/libcrypto/man/RAND_add.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RAND_add 3"
 | |
| -.TH RAND_add 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RAND_add 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RAND_bytes.3.orig
 | |
| +++ secure/lib/libcrypto/man/RAND_bytes.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RAND_bytes 3"
 | |
| -.TH RAND_bytes 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RAND_bytes 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RAND_cleanup.3.orig
 | |
| +++ secure/lib/libcrypto/man/RAND_cleanup.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RAND_cleanup 3"
 | |
| -.TH RAND_cleanup 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RAND_cleanup 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RAND_egd.3.orig
 | |
| +++ secure/lib/libcrypto/man/RAND_egd.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RAND_egd 3"
 | |
| -.TH RAND_egd 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RAND_egd 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RAND_load_file.3.orig
 | |
| +++ secure/lib/libcrypto/man/RAND_load_file.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RAND_load_file 3"
 | |
| -.TH RAND_load_file 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RAND_load_file 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RAND_set_rand_method.3.orig
 | |
| +++ secure/lib/libcrypto/man/RAND_set_rand_method.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RAND_set_rand_method 3"
 | |
| -.TH RAND_set_rand_method 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RAND_set_rand_method 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_blinding_on.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_blinding_on.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_blinding_on 3"
 | |
| -.TH RSA_blinding_on 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_blinding_on 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_check_key.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_check_key.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_check_key 3"
 | |
| -.TH RSA_check_key 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_check_key 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_generate_key.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_generate_key.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_generate_key 3"
 | |
| -.TH RSA_generate_key 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_generate_key 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_get_ex_new_index.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_get_ex_new_index.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_get_ex_new_index 3"
 | |
| -.TH RSA_get_ex_new_index 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_get_ex_new_index 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_new 3"
 | |
| -.TH RSA_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_padding_add_PKCS1_type_1 3"
 | |
| -.TH RSA_padding_add_PKCS1_type_1 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_padding_add_PKCS1_type_1 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_print.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_print.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_print 3"
 | |
| -.TH RSA_print 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_print 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_private_encrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_private_encrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_private_encrypt 3"
 | |
| -.TH RSA_private_encrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_private_encrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_public_encrypt.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_public_encrypt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_public_encrypt 3"
 | |
| -.TH RSA_public_encrypt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_public_encrypt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_set_method.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_set_method.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_set_method 3"
 | |
| -.TH RSA_set_method 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_set_method 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_sign.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_sign.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_sign 3"
 | |
| -.TH RSA_sign 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_sign 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_sign_ASN1_OCTET_STRING 3"
 | |
| -.TH RSA_sign_ASN1_OCTET_STRING 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_sign_ASN1_OCTET_STRING 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/RSA_size.3.orig
 | |
| +++ secure/lib/libcrypto/man/RSA_size.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA_size 3"
 | |
| -.TH RSA_size 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA_size 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/SMIME_read_CMS.3.orig
 | |
| +++ secure/lib/libcrypto/man/SMIME_read_CMS.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SMIME_read_CMS 3"
 | |
| -.TH SMIME_read_CMS 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SMIME_read_CMS 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/SMIME_read_PKCS7.3.orig
 | |
| +++ secure/lib/libcrypto/man/SMIME_read_PKCS7.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SMIME_read_PKCS7 3"
 | |
| -.TH SMIME_read_PKCS7 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SMIME_read_PKCS7 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/SMIME_write_CMS.3.orig
 | |
| +++ secure/lib/libcrypto/man/SMIME_write_CMS.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SMIME_write_CMS 3"
 | |
| -.TH SMIME_write_CMS 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SMIME_write_CMS 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/SMIME_write_PKCS7.3.orig
 | |
| +++ secure/lib/libcrypto/man/SMIME_write_PKCS7.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SMIME_write_PKCS7 3"
 | |
| -.TH SMIME_write_PKCS7 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SMIME_write_PKCS7 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_NAME_ENTRY_get_object 3"
 | |
| -.TH X509_NAME_ENTRY_get_object 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_NAME_ENTRY_get_object 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_NAME_add_entry_by_txt 3"
 | |
| -.TH X509_NAME_add_entry_by_txt 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_NAME_add_entry_by_txt 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_NAME_get_index_by_NID 3"
 | |
| -.TH X509_NAME_get_index_by_NID 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_NAME_get_index_by_NID 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_NAME_print_ex.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_NAME_print_ex.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_NAME_print_ex 3"
 | |
| -.TH X509_NAME_print_ex 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_NAME_print_ex 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_STORE_CTX_get_error 3"
 | |
| -.TH X509_STORE_CTX_get_error 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_STORE_CTX_get_error 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_STORE_CTX_get_ex_new_index 3"
 | |
| -.TH X509_STORE_CTX_get_ex_new_index 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_STORE_CTX_get_ex_new_index 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_STORE_CTX_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_STORE_CTX_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_STORE_CTX_new 3"
 | |
| -.TH X509_STORE_CTX_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_STORE_CTX_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_STORE_CTX_set_verify_cb 3"
 | |
| -.TH X509_STORE_CTX_set_verify_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_STORE_CTX_set_verify_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_STORE_set_verify_cb_func 3"
 | |
| -.TH X509_STORE_set_verify_cb_func 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_STORE_set_verify_cb_func 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_VERIFY_PARAM_set_flags 3"
 | |
| -.TH X509_VERIFY_PARAM_set_flags 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_VERIFY_PARAM_set_flags 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_check_host.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_check_host.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_check_host 3"
 | |
| -.TH X509_check_host 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_check_host 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_new.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_new 3"
 | |
| -.TH X509_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/X509_verify_cert.3.orig
 | |
| +++ secure/lib/libcrypto/man/X509_verify_cert.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509_verify_cert 3"
 | |
| -.TH X509_verify_cert 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509_verify_cert 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/bio.3.orig
 | |
| +++ secure/lib/libcrypto/man/bio.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "bio 3"
 | |
| -.TH bio 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH bio 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/blowfish.3.orig
 | |
| +++ secure/lib/libcrypto/man/blowfish.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "blowfish 3"
 | |
| -.TH blowfish 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH blowfish 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/bn.3.orig
 | |
| +++ secure/lib/libcrypto/man/bn.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "bn 3"
 | |
| -.TH bn 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH bn 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/bn_internal.3.orig
 | |
| +++ secure/lib/libcrypto/man/bn_internal.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "bn_internal 3"
 | |
| -.TH bn_internal 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH bn_internal 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/buffer.3.orig
 | |
| +++ secure/lib/libcrypto/man/buffer.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "buffer 3"
 | |
| -.TH buffer 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH buffer 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/crypto.3.orig
 | |
| +++ secure/lib/libcrypto/man/crypto.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "crypto 3"
 | |
| -.TH crypto 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH crypto 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_ASN1_OBJECT 3"
 | |
| -.TH d2i_ASN1_OBJECT 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_ASN1_OBJECT 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_CMS_ContentInfo.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_CMS_ContentInfo 3"
 | |
| -.TH d2i_CMS_ContentInfo 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_CMS_ContentInfo 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_DHparams.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_DHparams.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_DHparams 3"
 | |
| -.TH d2i_DHparams 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_DHparams 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_DSAPublicKey.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_DSAPublicKey.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_DSAPublicKey 3"
 | |
| -.TH d2i_DSAPublicKey 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_DSAPublicKey 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_ECPKParameters.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_ECPKParameters.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_ECPKParameters 3"
 | |
| -.TH d2i_ECPKParameters 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_ECPKParameters 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_ECPrivateKey.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_ECPrivateKey.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_ECPrivateKey 3"
 | |
| -.TH d2i_ECPrivateKey 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_ECPrivateKey 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_PKCS8PrivateKey 3"
 | |
| -.TH d2i_PKCS8PrivateKey 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_PKCS8PrivateKey 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_PrivateKey.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_PrivateKey.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_PrivateKey 3"
 | |
| -.TH d2i_PrivateKey 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_PrivateKey 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_RSAPublicKey.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_RSAPublicKey.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_RSAPublicKey 3"
 | |
| -.TH d2i_RSAPublicKey 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_RSAPublicKey 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_X509.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_X509.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_X509 3"
 | |
| -.TH d2i_X509 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_X509 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_X509_ALGOR.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_X509_ALGOR.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_X509_ALGOR 3"
 | |
| -.TH d2i_X509_ALGOR 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_X509_ALGOR 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_X509_CRL.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_X509_CRL.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_X509_CRL 3"
 | |
| -.TH d2i_X509_CRL 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_X509_CRL 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_X509_NAME.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_X509_NAME.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_X509_NAME 3"
 | |
| -.TH d2i_X509_NAME 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_X509_NAME 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_X509_REQ.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_X509_REQ.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_X509_REQ 3"
 | |
| -.TH d2i_X509_REQ 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_X509_REQ 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/d2i_X509_SIG.3.orig
 | |
| +++ secure/lib/libcrypto/man/d2i_X509_SIG.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_X509_SIG 3"
 | |
| -.TH d2i_X509_SIG 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_X509_SIG 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/des.3.orig
 | |
| +++ secure/lib/libcrypto/man/des.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "des 3"
 | |
| -.TH des 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH des 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/dh.3.orig
 | |
| +++ secure/lib/libcrypto/man/dh.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "dh 3"
 | |
| -.TH dh 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH dh 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/dsa.3.orig
 | |
| +++ secure/lib/libcrypto/man/dsa.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "dsa 3"
 | |
| -.TH dsa 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH dsa 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ec.3.orig
 | |
| +++ secure/lib/libcrypto/man/ec.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ec 3"
 | |
| -.TH ec 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ec 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ecdsa.3.orig
 | |
| +++ secure/lib/libcrypto/man/ecdsa.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ecdsa 3"
 | |
| -.TH ecdsa 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ecdsa 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/engine.3.orig
 | |
| +++ secure/lib/libcrypto/man/engine.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "engine 3"
 | |
| -.TH engine 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH engine 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/err.3.orig
 | |
| +++ secure/lib/libcrypto/man/err.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "err 3"
 | |
| -.TH err 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH err 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/evp.3.orig
 | |
| +++ secure/lib/libcrypto/man/evp.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "evp 3"
 | |
| -.TH evp 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH evp 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/hmac.3.orig
 | |
| +++ secure/lib/libcrypto/man/hmac.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "hmac 3"
 | |
| -.TH hmac 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH hmac 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/i2d_CMS_bio_stream.3.orig
 | |
| +++ secure/lib/libcrypto/man/i2d_CMS_bio_stream.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "i2d_CMS_bio_stream 3"
 | |
| -.TH i2d_CMS_bio_stream 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH i2d_CMS_bio_stream 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3.orig
 | |
| +++ secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "i2d_PKCS7_bio_stream 3"
 | |
| -.TH i2d_PKCS7_bio_stream 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH i2d_PKCS7_bio_stream 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/lh_stats.3.orig
 | |
| +++ secure/lib/libcrypto/man/lh_stats.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "lh_stats 3"
 | |
| -.TH lh_stats 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH lh_stats 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/lhash.3.orig
 | |
| +++ secure/lib/libcrypto/man/lhash.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "lhash 3"
 | |
| -.TH lhash 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH lhash 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/md5.3.orig
 | |
| +++ secure/lib/libcrypto/man/md5.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "md5 3"
 | |
| -.TH md5 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH md5 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/mdc2.3.orig
 | |
| +++ secure/lib/libcrypto/man/mdc2.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "mdc2 3"
 | |
| -.TH mdc2 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH mdc2 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/pem.3.orig
 | |
| +++ secure/lib/libcrypto/man/pem.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "pem 3"
 | |
| -.TH pem 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH pem 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/rand.3.orig
 | |
| +++ secure/lib/libcrypto/man/rand.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "rand 3"
 | |
| -.TH rand 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH rand 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/rc4.3.orig
 | |
| +++ secure/lib/libcrypto/man/rc4.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "rc4 3"
 | |
| -.TH rc4 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH rc4 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ripemd.3.orig
 | |
| +++ secure/lib/libcrypto/man/ripemd.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ripemd 3"
 | |
| -.TH ripemd 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ripemd 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/rsa.3.orig
 | |
| +++ secure/lib/libcrypto/man/rsa.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "rsa 3"
 | |
| -.TH rsa 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH rsa 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/sha.3.orig
 | |
| +++ secure/lib/libcrypto/man/sha.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "sha 3"
 | |
| -.TH sha 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH sha 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/threads.3.orig
 | |
| +++ secure/lib/libcrypto/man/threads.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "threads 3"
 | |
| -.TH threads 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH threads 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ui.3.orig
 | |
| +++ secure/lib/libcrypto/man/ui.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ui 3"
 | |
| -.TH ui 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ui 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/ui_compat.3.orig
 | |
| +++ secure/lib/libcrypto/man/ui_compat.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ui_compat 3"
 | |
| -.TH ui_compat 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ui_compat 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/man/x509.3.orig
 | |
| +++ secure/lib/libcrypto/man/x509.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "x509 3"
 | |
| -.TH x509 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH x509 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libcrypto/Makefile.inc.orig
 | |
| +++ secure/lib/libcrypto/Makefile.inc
 | |
| @@ -3,8 +3,8 @@
 | |
|  .include <bsd.own.mk>
 | |
|  
 | |
|  # OpenSSL version used for manual page generation
 | |
| -OPENSSL_VER=	1.0.2i
 | |
| -OPENSSL_DATE=	2016-09-22
 | |
| +OPENSSL_VER=	1.0.2j
 | |
| +OPENSSL_DATE=	2016-09-26
 | |
|  
 | |
|  LCRYPTO_SRC=	${.CURDIR}/../../../crypto/openssl
 | |
|  LCRYPTO_DOC=	${LCRYPTO_SRC}/doc
 | |
| --- secure/lib/libssl/man/SSL_CIPHER_get_name.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CIPHER_get_name.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CIPHER_get_name 3"
 | |
| -.TH SSL_CIPHER_get_name 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CIPHER_get_name 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_COMP_add_compression_method.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_COMP_add_compression_method.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_COMP_add_compression_method 3"
 | |
| -.TH SSL_COMP_add_compression_method 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_COMP_add_compression_method 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CONF_CTX_new.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CONF_CTX_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CONF_CTX_new 3"
 | |
| -.TH SSL_CONF_CTX_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CONF_CTX_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CONF_CTX_set1_prefix.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CONF_CTX_set1_prefix 3"
 | |
| -.TH SSL_CONF_CTX_set1_prefix 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CONF_CTX_set1_prefix 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CONF_CTX_set_flags.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CONF_CTX_set_flags 3"
 | |
| -.TH SSL_CONF_CTX_set_flags 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CONF_CTX_set_flags 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CONF_CTX_set_ssl_ctx.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CONF_CTX_set_ssl_ctx 3"
 | |
| -.TH SSL_CONF_CTX_set_ssl_ctx 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CONF_CTX_set_ssl_ctx 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CONF_cmd.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CONF_cmd.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CONF_cmd 3"
 | |
| -.TH SSL_CONF_cmd 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CONF_cmd 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CONF_cmd_argv.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CONF_cmd_argv.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CONF_cmd_argv 3"
 | |
| -.TH SSL_CONF_cmd_argv 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CONF_cmd_argv 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_add1_chain_cert.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_add1_chain_cert 3"
 | |
| -.TH SSL_CTX_add1_chain_cert 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_add1_chain_cert 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_add_extra_chain_cert 3"
 | |
| -.TH SSL_CTX_add_extra_chain_cert 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_add_extra_chain_cert 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_add_session.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_add_session.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_add_session 3"
 | |
| -.TH SSL_CTX_add_session 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_add_session 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_ctrl.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_ctrl.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_ctrl 3"
 | |
| -.TH SSL_CTX_ctrl 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_ctrl 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_flush_sessions.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_flush_sessions.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_flush_sessions 3"
 | |
| -.TH SSL_CTX_flush_sessions 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_flush_sessions 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_free.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_free.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_free 3"
 | |
| -.TH SSL_CTX_free 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_free 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_get0_param.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_get0_param.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_get0_param 3"
 | |
| -.TH SSL_CTX_get0_param 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_get0_param 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_get_ex_new_index 3"
 | |
| -.TH SSL_CTX_get_ex_new_index 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_get_ex_new_index 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_get_verify_mode.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_get_verify_mode.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_get_verify_mode 3"
 | |
| -.TH SSL_CTX_get_verify_mode 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_get_verify_mode 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_load_verify_locations.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_load_verify_locations.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_load_verify_locations 3"
 | |
| -.TH SSL_CTX_load_verify_locations 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_load_verify_locations 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_new.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_new 3"
 | |
| -.TH SSL_CTX_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_sess_number.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_sess_number.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_sess_number 3"
 | |
| -.TH SSL_CTX_sess_number 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_sess_number 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_sess_set_cache_size 3"
 | |
| -.TH SSL_CTX_sess_set_cache_size 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_sess_set_cache_size 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_sess_set_get_cb 3"
 | |
| -.TH SSL_CTX_sess_set_get_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_sess_set_get_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_sessions.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_sessions.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_sessions 3"
 | |
| -.TH SSL_CTX_sessions 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_sessions 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set1_curves.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set1_curves.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set1_curves 3"
 | |
| -.TH SSL_CTX_set1_curves 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set1_curves 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set1_verify_cert_store.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set1_verify_cert_store 3"
 | |
| -.TH SSL_CTX_set1_verify_cert_store 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set1_verify_cert_store 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_alpn_select_cb.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_alpn_select_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_alpn_select_cb 3"
 | |
| -.TH SSL_CTX_set_alpn_select_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_alpn_select_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_cert_cb.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_cert_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_cert_cb 3"
 | |
| -.TH SSL_CTX_set_cert_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_cert_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_cert_store.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_cert_store.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_cert_store 3"
 | |
| -.TH SSL_CTX_set_cert_store 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_cert_store 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_cert_verify_callback 3"
 | |
| -.TH SSL_CTX_set_cert_verify_callback 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_cert_verify_callback 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_cipher_list.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_cipher_list.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_cipher_list 3"
 | |
| -.TH SSL_CTX_set_cipher_list 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_cipher_list 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_client_CA_list 3"
 | |
| -.TH SSL_CTX_set_client_CA_list 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_client_CA_list 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_client_cert_cb 3"
 | |
| -.TH SSL_CTX_set_client_cert_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_client_cert_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_custom_cli_ext.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_custom_cli_ext 3"
 | |
| -.TH SSL_CTX_set_custom_cli_ext 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_custom_cli_ext 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_default_passwd_cb 3"
 | |
| -.TH SSL_CTX_set_default_passwd_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_default_passwd_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_generate_session_id 3"
 | |
| -.TH SSL_CTX_set_generate_session_id 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_generate_session_id 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_info_callback.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_info_callback.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_info_callback 3"
 | |
| -.TH SSL_CTX_set_info_callback 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_info_callback 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_max_cert_list 3"
 | |
| -.TH SSL_CTX_set_max_cert_list 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_max_cert_list 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_mode.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_mode.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_mode 3"
 | |
| -.TH SSL_CTX_set_mode 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_mode 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_msg_callback.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_msg_callback.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_msg_callback 3"
 | |
| -.TH SSL_CTX_set_msg_callback 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_msg_callback 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_options.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_options.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_options 3"
 | |
| -.TH SSL_CTX_set_options 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_options 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_psk_client_callback 3"
 | |
| -.TH SSL_CTX_set_psk_client_callback 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_psk_client_callback 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_quiet_shutdown 3"
 | |
| -.TH SSL_CTX_set_quiet_shutdown 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_quiet_shutdown 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_read_ahead.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_read_ahead.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_read_ahead 3"
 | |
| -.TH SSL_CTX_set_read_ahead 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_read_ahead 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_session_cache_mode 3"
 | |
| -.TH SSL_CTX_set_session_cache_mode 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_session_cache_mode 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_session_id_context.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_session_id_context.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_session_id_context 3"
 | |
| -.TH SSL_CTX_set_session_id_context 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_session_id_context 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_ssl_version.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_ssl_version.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_ssl_version 3"
 | |
| -.TH SSL_CTX_set_ssl_version 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_ssl_version 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_timeout.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_timeout.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_timeout 3"
 | |
| -.TH SSL_CTX_set_timeout 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_timeout 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_tlsext_status_cb.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_tlsext_status_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_tlsext_status_cb 3"
 | |
| -.TH SSL_CTX_set_tlsext_status_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_tlsext_status_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_tlsext_ticket_key_cb.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_tlsext_ticket_key_cb 3"
 | |
| -.TH SSL_CTX_set_tlsext_ticket_key_cb 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_tlsext_ticket_key_cb 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_tmp_dh_callback 3"
 | |
| -.TH SSL_CTX_set_tmp_dh_callback 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_tmp_dh_callback 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_tmp_rsa_callback 3"
 | |
| -.TH SSL_CTX_set_tmp_rsa_callback 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_tmp_rsa_callback 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_set_verify.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_set_verify.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_set_verify 3"
 | |
| -.TH SSL_CTX_set_verify 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_set_verify 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_use_certificate.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_use_certificate.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_use_certificate 3"
 | |
| -.TH SSL_CTX_use_certificate 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_use_certificate 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_use_psk_identity_hint 3"
 | |
| -.TH SSL_CTX_use_psk_identity_hint 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_use_psk_identity_hint 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_CTX_use_serverinfo.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_CTX_use_serverinfo.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_CTX_use_serverinfo 3"
 | |
| -.TH SSL_CTX_use_serverinfo 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_CTX_use_serverinfo 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_SESSION_free.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_SESSION_free.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_SESSION_free 3"
 | |
| -.TH SSL_SESSION_free 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_SESSION_free 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_SESSION_get_ex_new_index 3"
 | |
| -.TH SSL_SESSION_get_ex_new_index 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_SESSION_get_ex_new_index 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_SESSION_get_time.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_SESSION_get_time.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_SESSION_get_time 3"
 | |
| -.TH SSL_SESSION_get_time 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_SESSION_get_time 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_accept.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_accept.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_accept 3"
 | |
| -.TH SSL_accept 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_accept 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_alert_type_string.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_alert_type_string.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_alert_type_string 3"
 | |
| -.TH SSL_alert_type_string 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_alert_type_string 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_check_chain.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_check_chain.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_check_chain 3"
 | |
| -.TH SSL_check_chain 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_check_chain 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_clear.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_clear.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_clear 3"
 | |
| -.TH SSL_clear 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_clear 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_connect.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_connect.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_connect 3"
 | |
| -.TH SSL_connect 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_connect 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_do_handshake.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_do_handshake.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_do_handshake 3"
 | |
| -.TH SSL_do_handshake 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_do_handshake 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_free.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_free.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_free 3"
 | |
| -.TH SSL_free 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_free 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_SSL_CTX.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_SSL_CTX.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_SSL_CTX 3"
 | |
| -.TH SSL_get_SSL_CTX 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_SSL_CTX 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_ciphers.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_ciphers.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_ciphers 3"
 | |
| -.TH SSL_get_ciphers 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_ciphers 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_client_CA_list.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_client_CA_list.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_client_CA_list 3"
 | |
| -.TH SSL_get_client_CA_list 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_client_CA_list 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_current_cipher.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_current_cipher.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_current_cipher 3"
 | |
| -.TH SSL_get_current_cipher 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_current_cipher 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_default_timeout.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_default_timeout.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_default_timeout 3"
 | |
| -.TH SSL_get_default_timeout 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_default_timeout 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_error.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_error.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_error 3"
 | |
| -.TH SSL_get_error 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_error 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_ex_data_X509_STORE_CTX_idx 3"
 | |
| -.TH SSL_get_ex_data_X509_STORE_CTX_idx 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_ex_data_X509_STORE_CTX_idx 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_ex_new_index.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_ex_new_index.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_ex_new_index 3"
 | |
| -.TH SSL_get_ex_new_index 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_ex_new_index 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_fd.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_fd.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_fd 3"
 | |
| -.TH SSL_get_fd 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_fd 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_peer_cert_chain.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_peer_cert_chain.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_peer_cert_chain 3"
 | |
| -.TH SSL_get_peer_cert_chain 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_peer_cert_chain 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_peer_certificate.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_peer_certificate.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_peer_certificate 3"
 | |
| -.TH SSL_get_peer_certificate 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_peer_certificate 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_psk_identity.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_psk_identity.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_psk_identity 3"
 | |
| -.TH SSL_get_psk_identity 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_psk_identity 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_rbio.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_rbio.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_rbio 3"
 | |
| -.TH SSL_get_rbio 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_rbio 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_session.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_session.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_session 3"
 | |
| -.TH SSL_get_session 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_session 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_verify_result.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_verify_result.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_verify_result 3"
 | |
| -.TH SSL_get_verify_result 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_verify_result 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_get_version.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_get_version.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_get_version 3"
 | |
| -.TH SSL_get_version 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_get_version 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_library_init.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_library_init.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_library_init 3"
 | |
| -.TH SSL_library_init 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_library_init 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_load_client_CA_file.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_load_client_CA_file.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_load_client_CA_file 3"
 | |
| -.TH SSL_load_client_CA_file 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_load_client_CA_file 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_new.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_new.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_new 3"
 | |
| -.TH SSL_new 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_new 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_pending.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_pending.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_pending 3"
 | |
| -.TH SSL_pending 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_pending 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_read.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_read.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_read 3"
 | |
| -.TH SSL_read 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_read 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_rstate_string.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_rstate_string.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_rstate_string 3"
 | |
| -.TH SSL_rstate_string 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_rstate_string 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_session_reused.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_session_reused.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_session_reused 3"
 | |
| -.TH SSL_session_reused 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_session_reused 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_set_bio.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_set_bio.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_set_bio 3"
 | |
| -.TH SSL_set_bio 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_set_bio 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_set_connect_state.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_set_connect_state.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_set_connect_state 3"
 | |
| -.TH SSL_set_connect_state 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_set_connect_state 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_set_fd.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_set_fd.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_set_fd 3"
 | |
| -.TH SSL_set_fd 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_set_fd 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_set_session.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_set_session.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_set_session 3"
 | |
| -.TH SSL_set_session 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_set_session 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_set_shutdown.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_set_shutdown.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_set_shutdown 3"
 | |
| -.TH SSL_set_shutdown 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_set_shutdown 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_set_verify_result.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_set_verify_result.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_set_verify_result 3"
 | |
| -.TH SSL_set_verify_result 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_set_verify_result 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_shutdown.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_shutdown.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_shutdown 3"
 | |
| -.TH SSL_shutdown 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_shutdown 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_state_string.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_state_string.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_state_string 3"
 | |
| -.TH SSL_state_string 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_state_string 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_want.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_want.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_want 3"
 | |
| -.TH SSL_want 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_want 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/SSL_write.3.orig
 | |
| +++ secure/lib/libssl/man/SSL_write.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SSL_write 3"
 | |
| -.TH SSL_write 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SSL_write 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/d2i_SSL_SESSION.3.orig
 | |
| +++ secure/lib/libssl/man/d2i_SSL_SESSION.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "d2i_SSL_SESSION 3"
 | |
| -.TH d2i_SSL_SESSION 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH d2i_SSL_SESSION 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/lib/libssl/man/ssl.3.orig
 | |
| +++ secure/lib/libssl/man/ssl.3
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ssl 3"
 | |
| -.TH ssl 3 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ssl 3 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/CA.pl.1.orig
 | |
| +++ secure/usr.bin/openssl/man/CA.pl.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CA.PL 1"
 | |
| -.TH CA.PL 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CA.PL 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/asn1parse.1.orig
 | |
| +++ secure/usr.bin/openssl/man/asn1parse.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ASN1PARSE 1"
 | |
| -.TH ASN1PARSE 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ASN1PARSE 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/c_rehash.1.orig
 | |
| +++ secure/usr.bin/openssl/man/c_rehash.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "C_REHASH 1"
 | |
| -.TH C_REHASH 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH C_REHASH 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/ca.1.orig
 | |
| +++ secure/usr.bin/openssl/man/ca.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CA 1"
 | |
| -.TH CA 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CA 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/ciphers.1.orig
 | |
| +++ secure/usr.bin/openssl/man/ciphers.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CIPHERS 1"
 | |
| -.TH CIPHERS 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CIPHERS 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/cms.1.orig
 | |
| +++ secure/usr.bin/openssl/man/cms.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CMS 1"
 | |
| -.TH CMS 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CMS 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/crl.1.orig
 | |
| +++ secure/usr.bin/openssl/man/crl.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CRL 1"
 | |
| -.TH CRL 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CRL 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/crl2pkcs7.1.orig
 | |
| +++ secure/usr.bin/openssl/man/crl2pkcs7.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "CRL2PKCS7 1"
 | |
| -.TH CRL2PKCS7 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH CRL2PKCS7 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/dgst.1.orig
 | |
| +++ secure/usr.bin/openssl/man/dgst.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DGST 1"
 | |
| -.TH DGST 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DGST 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/dhparam.1.orig
 | |
| +++ secure/usr.bin/openssl/man/dhparam.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DHPARAM 1"
 | |
| -.TH DHPARAM 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DHPARAM 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/dsa.1.orig
 | |
| +++ secure/usr.bin/openssl/man/dsa.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSA 1"
 | |
| -.TH DSA 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSA 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/dsaparam.1.orig
 | |
| +++ secure/usr.bin/openssl/man/dsaparam.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "DSAPARAM 1"
 | |
| -.TH DSAPARAM 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH DSAPARAM 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/ec.1.orig
 | |
| +++ secure/usr.bin/openssl/man/ec.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "EC 1"
 | |
| -.TH EC 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH EC 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/ecparam.1.orig
 | |
| +++ secure/usr.bin/openssl/man/ecparam.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ECPARAM 1"
 | |
| -.TH ECPARAM 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ECPARAM 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/enc.1.orig
 | |
| +++ secure/usr.bin/openssl/man/enc.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ENC 1"
 | |
| -.TH ENC 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ENC 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/errstr.1.orig
 | |
| +++ secure/usr.bin/openssl/man/errstr.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "ERRSTR 1"
 | |
| -.TH ERRSTR 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH ERRSTR 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/gendsa.1.orig
 | |
| +++ secure/usr.bin/openssl/man/gendsa.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "GENDSA 1"
 | |
| -.TH GENDSA 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH GENDSA 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/genpkey.1.orig
 | |
| +++ secure/usr.bin/openssl/man/genpkey.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "GENPKEY 1"
 | |
| -.TH GENPKEY 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH GENPKEY 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/genrsa.1.orig
 | |
| +++ secure/usr.bin/openssl/man/genrsa.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "GENRSA 1"
 | |
| -.TH GENRSA 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH GENRSA 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/nseq.1.orig
 | |
| +++ secure/usr.bin/openssl/man/nseq.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "NSEQ 1"
 | |
| -.TH NSEQ 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH NSEQ 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/ocsp.1.orig
 | |
| +++ secure/usr.bin/openssl/man/ocsp.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OCSP 1"
 | |
| -.TH OCSP 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OCSP 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/openssl.1.orig
 | |
| +++ secure/usr.bin/openssl/man/openssl.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "OPENSSL 1"
 | |
| -.TH OPENSSL 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH OPENSSL 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/passwd.1.orig
 | |
| +++ secure/usr.bin/openssl/man/passwd.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PASSWD 1"
 | |
| -.TH PASSWD 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PASSWD 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/pkcs12.1.orig
 | |
| +++ secure/usr.bin/openssl/man/pkcs12.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS12 1"
 | |
| -.TH PKCS12 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS12 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/pkcs7.1.orig
 | |
| +++ secure/usr.bin/openssl/man/pkcs7.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS7 1"
 | |
| -.TH PKCS7 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS7 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/pkcs8.1.orig
 | |
| +++ secure/usr.bin/openssl/man/pkcs8.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKCS8 1"
 | |
| -.TH PKCS8 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKCS8 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/pkey.1.orig
 | |
| +++ secure/usr.bin/openssl/man/pkey.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKEY 1"
 | |
| -.TH PKEY 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKEY 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/pkeyparam.1.orig
 | |
| +++ secure/usr.bin/openssl/man/pkeyparam.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKEYPARAM 1"
 | |
| -.TH PKEYPARAM 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKEYPARAM 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/pkeyutl.1.orig
 | |
| +++ secure/usr.bin/openssl/man/pkeyutl.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "PKEYUTL 1"
 | |
| -.TH PKEYUTL 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH PKEYUTL 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/rand.1.orig
 | |
| +++ secure/usr.bin/openssl/man/rand.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RAND 1"
 | |
| -.TH RAND 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RAND 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/req.1.orig
 | |
| +++ secure/usr.bin/openssl/man/req.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "REQ 1"
 | |
| -.TH REQ 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH REQ 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/rsa.1.orig
 | |
| +++ secure/usr.bin/openssl/man/rsa.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSA 1"
 | |
| -.TH RSA 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSA 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/rsautl.1.orig
 | |
| +++ secure/usr.bin/openssl/man/rsautl.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "RSAUTL 1"
 | |
| -.TH RSAUTL 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH RSAUTL 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/s_client.1.orig
 | |
| +++ secure/usr.bin/openssl/man/s_client.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "S_CLIENT 1"
 | |
| -.TH S_CLIENT 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH S_CLIENT 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/s_server.1.orig
 | |
| +++ secure/usr.bin/openssl/man/s_server.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "S_SERVER 1"
 | |
| -.TH S_SERVER 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH S_SERVER 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/s_time.1.orig
 | |
| +++ secure/usr.bin/openssl/man/s_time.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "S_TIME 1"
 | |
| -.TH S_TIME 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH S_TIME 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/sess_id.1.orig
 | |
| +++ secure/usr.bin/openssl/man/sess_id.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SESS_ID 1"
 | |
| -.TH SESS_ID 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SESS_ID 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/smime.1.orig
 | |
| +++ secure/usr.bin/openssl/man/smime.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SMIME 1"
 | |
| -.TH SMIME 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SMIME 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/speed.1.orig
 | |
| +++ secure/usr.bin/openssl/man/speed.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SPEED 1"
 | |
| -.TH SPEED 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SPEED 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/spkac.1.orig
 | |
| +++ secure/usr.bin/openssl/man/spkac.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "SPKAC 1"
 | |
| -.TH SPKAC 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH SPKAC 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/ts.1.orig
 | |
| +++ secure/usr.bin/openssl/man/ts.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "TS 1"
 | |
| -.TH TS 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH TS 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/tsget.1.orig
 | |
| +++ secure/usr.bin/openssl/man/tsget.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "TSGET 1"
 | |
| -.TH TSGET 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH TSGET 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/verify.1.orig
 | |
| +++ secure/usr.bin/openssl/man/verify.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "VERIFY 1"
 | |
| -.TH VERIFY 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH VERIFY 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/version.1.orig
 | |
| +++ secure/usr.bin/openssl/man/version.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "VERSION 1"
 | |
| -.TH VERSION 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH VERSION 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/x509.1.orig
 | |
| +++ secure/usr.bin/openssl/man/x509.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509 1"
 | |
| -.TH X509 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- secure/usr.bin/openssl/man/x509v3_config.1.orig
 | |
| +++ secure/usr.bin/openssl/man/x509v3_config.1
 | |
| @@ -133,7 +133,7 @@
 | |
|  .\" ========================================================================
 | |
|  .\"
 | |
|  .IX Title "X509V3_CONFIG 1"
 | |
| -.TH X509V3_CONFIG 1 "2016-09-22" "1.0.2i" "OpenSSL"
 | |
| +.TH X509V3_CONFIG 1 "2016-09-26" "1.0.2j" "OpenSSL"
 | |
|  .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 | |
|  .\" way too many mistakes in technical documents.
 | |
|  .if n .ad l
 | |
| --- ..orig
 | |
| +++ .
 | |
|    Merged /head:r306342
 |