openssl/crypto/des
Richard Levitte dec95d7589 Rework how our providers are built
We put almost everything in these internal static libraries:

libcommon               Block building code that can be used by all
                        our implementations, legacy and non-legacy
                        alike.
libimplementations      All non-legacy algorithm implementations and
                        only them.  All the code that ends up here is
                        agnostic to the definitions of FIPS_MODE.
liblegacy               All legacy implementations.

libnonfips              Support code for the algorithm implementations.
                        Built with FIPS_MODE undefined.  Any code that
                        checks that FIPS_MODE isn't defined must end
                        up in this library.
libfips                 Support code for the algorithm implementations.
                        Built with FIPS_MODE defined.  Any code that
                        checks that FIPS_MODE is defined must end up
                        in this library.

The FIPS provider module is built from providers/fips/*.c and linked
with libimplementations, libcommon and libfips.

The Legacy provider module is built from providers/legacy/*.c and
linked with liblegacy, libcommon and libcrypto.
If module building is disabled, the object files from liblegacy and
libcommon are added to libcrypto and the Legacy provider becomes a
built-in provider.

The Default provider module is built-in, so it ends up being linked
with libimplementations, libcommon and libnonfips.  For libcrypto in
form of static library, the object files from those other libraries
are simply being added to libcrypto.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10088)
2019-10-10 14:12:15 +02:00
..
asm Unify all assembler file generators 2019-09-16 16:29:57 +02:00
build.info Rework how our providers are built 2019-10-10 14:12:15 +02:00
cbc_cksm.c Reorganize local header files 2019-09-28 20:26:35 +02:00
cbc_enc.c Following the license change, modify the boilerplates in crypto/des/ 2018-12-06 14:46:14 +01:00
cfb64ede.c Reorganize local header files 2019-09-28 20:26:35 +02:00
cfb64enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
cfb_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
des_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
des_local.h Fix header file include guard names 2019-09-28 20:26:36 +02:00
ecb3_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
ecb_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
fcrypt_b.c Reorganize local header files 2019-09-28 20:26:35 +02:00
fcrypt.c Reorganize local header files 2019-09-28 20:26:35 +02:00
ncbc_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
ofb64ede.c Reorganize local header files 2019-09-28 20:26:35 +02:00
ofb64enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
ofb_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
pcbc_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00
qud_cksm.c Reorganize local header files 2019-09-28 20:26:35 +02:00
rand_key.c Following the license change, modify the boilerplates in crypto/des/ 2018-12-06 14:46:14 +01:00
set_key.c Reorganize local header files 2019-09-28 20:26:35 +02:00
spr.h Following the license change, modify the boilerplates in crypto/des/ 2018-12-06 14:46:14 +01:00
str2key.c Reorganize local header files 2019-09-28 20:26:35 +02:00
xcbc_enc.c Reorganize local header files 2019-09-28 20:26:35 +02:00