diff options
author | Richard Levitte <levitte@openssl.org> | 2019-01-20 13:14:58 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-03-11 20:40:13 +0100 |
commit | 4c2883a9bf59c5ee31e8e2e101b3894a16c06950 (patch) | |
tree | 5a46bea7ea5815cfa540b0ca81d2a063c9a27aea /crypto/build.info | |
parent | Replumbing: Add MODULESDIR macro and OPENSSL_MODULES environment variable (diff) | |
download | openssl-4c2883a9bf59c5ee31e8e2e101b3894a16c06950.tar.xz openssl-4c2883a9bf59c5ee31e8e2e101b3894a16c06950.zip |
Replumbing: Add the Provider Object, type OSSL_PROVIDER
The OSSL_PROVIDER is the core object involved in loading a provider
module, initialize a provider and do the initial communication of
provider wide and core wide dispatch tables.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8287)
Diffstat (limited to 'crypto/build.info')
-rw-r--r-- | crypto/build.info | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/build.info b/crypto/build.info index e3e9ceeec1..fdf0810dbe 100644 --- a/crypto/build.info +++ b/crypto/build.info @@ -8,6 +8,10 @@ SUBDIRS=objects buffer bio stack lhash rand evp asn1 pem x509 x509v3 conf \ err comp ocsp cms ts srp cmac ct async kmac ess LIBS=../libcrypto +# The Core +SOURCE[../libcrypto]=provider_core.c + +# Central utilities SOURCE[../libcrypto]=\ cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c cpt_err.c \ ebcdic.c uid.c o_time.c o_str.c o_dir.c o_fopen.c ctype.c \ |