openssl/crypto/dh
Dr. Matthias St. Pierre 25f2138b0a Reorganize private crypto header files
Currently, there are two different directories which contain internal
header files of libcrypto which are meant to be shared internally:

While header files in 'include/internal' are intended to be shared
between libcrypto and libssl, the files in 'crypto/include/internal'
are intended to be shared inside libcrypto only.

To make things complicated, the include search path is set up in such
a way that the directive #include "internal/file.h" could refer to
a file in either of these two directoroes. This makes it necessary
in some cases to add a '_int.h' suffix to some files to resolve this
ambiguity:

  #include "internal/file.h"      # located in 'include/internal'
  #include "internal/file_int.h"  # located in 'crypto/include/internal'

This commit moves the private crypto headers from

  'crypto/include/internal'  to  'include/crypto'

As a result, the include directives become unambiguous

  #include "internal/file.h"       # located in 'include/internal'
  #include "crypto/file.h"         # located in 'include/crypto'

hence the superfluous '_int.h' suffixes can be stripped.

The files 'store_int.h' and 'store.h' need to be treated specially;
they are joined into a single file.

Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9333)
2019-09-28 20:26:34 +02:00
..
build.info DH named parameter support 2017-10-12 02:40:30 +01:00
dh192.pem Import of old SSLeay release: SSLeay 0.8.1b 1998-12-21 10:52:47 +00:00
dh512.pem Import of old SSLeay release: SSLeay 0.8.1b 1998-12-21 10:52:47 +00:00
dh1024.pem Import of old SSLeay release: SSLeay 0.8.1b 1998-12-21 10:52:47 +00:00
dh2048.pem Import of old SSLeay release: SSLeay 0.8.1b 1998-12-21 10:52:47 +00:00
dh4096.pem Import of old SSLeay release: SSLeay 0.8.1b 1998-12-21 10:52:47 +00:00
dh_ameth.c Reorganize private crypto header files 2019-09-28 20:26:34 +02:00
dh_asn1.c Adapt DH to use with KEYMGMT 2019-07-23 19:43:09 +02:00
dh_check.c DH_check_pub_key_ex was accidentally calling DH_check, 2019-09-09 14:43:57 +02:00
dh_depr.c Following the license change, modify the boilerplates in crypto/dh/ 2018-12-06 14:47:24 +01:00
dh_err.c util/mkerr.pl: make it not depend on the function code 2019-09-12 17:59:52 +02:00
dh_gen.c Enforce a minimum DH modulus size of 512 bits 2019-07-24 14:44:08 +02:00
dh_kdf.c Usages of KDFs converted to use the name macros 2019-09-11 10:22:49 +10:00
dh_key.c Reorganize private crypto header files 2019-09-28 20:26:34 +02:00
dh_lib.c Use BN_clear_free in DH_set0_key 2019-09-09 14:43:57 +02:00
dh_locl.h Enforce a minimum DH modulus size of 512 bits 2019-07-24 14:44:08 +02:00
dh_meth.c Following the license change, modify the boilerplates in crypto/dh/ 2018-12-06 14:47:24 +01:00
dh_pmeth.c Reorganize private crypto header files 2019-09-28 20:26:34 +02:00
dh_prn.c Following the license change, modify the boilerplates in crypto/dh/ 2018-12-06 14:47:24 +01:00
dh_rfc5114.c Reorganize private crypto header files 2019-09-28 20:26:34 +02:00
dh_rfc7919.c Reorganize private crypto header files 2019-09-28 20:26:34 +02:00