diff options
author | Brent Cook <busterb@gmail.com> | 2018-03-18 10:37:10 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2018-03-18 10:43:16 -0500 |
commit | 366071c2cffabe8cf3a557d8abf68025b3565b2e (patch) | |
tree | 46f2610f6b8e6f2560bb0bbea5e8130f753b8aee | |
parent | 0e46c1e8ba9eca009173d2dc0c3084b322088eaf (diff) | |
download | portable-366071c2cffabe8cf3a557d8abf68025b3565b2e.tar.gz portable-366071c2cffabe8cf3a557d8abf68025b3565b2e.tar.bz2 portable-366071c2cffabe8cf3a557d8abf68025b3565b2e.zip |
add new init functions
-rw-r--r-- | crypto/CMakeLists.txt | 3 | ||||
-rw-r--r-- | crypto/Makefile.am | 3 | ||||
-rw-r--r-- | ssl/CMakeLists.txt | 1 | ||||
-rw-r--r-- | ssl/Makefile.am | 1 |
4 files changed, 8 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 79899e0..184efd1 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -112,6 +112,7 @@ set( | |||
112 | ${CRYPTO_SRC} | 112 | ${CRYPTO_SRC} |
113 | cpt_err.c | 113 | cpt_err.c |
114 | cryptlib.c | 114 | cryptlib.c |
115 | crypto_init.c | ||
115 | cversion.c | 116 | cversion.c |
116 | ex_data.c | 117 | ex_data.c |
117 | malloc-wrapper.c | 118 | malloc-wrapper.c |
@@ -324,6 +325,7 @@ set( | |||
324 | dsa/dsa_gen.c | 325 | dsa/dsa_gen.c |
325 | dsa/dsa_key.c | 326 | dsa/dsa_key.c |
326 | dsa/dsa_lib.c | 327 | dsa/dsa_lib.c |
328 | dsa/dsa_meth.c | ||
327 | dsa/dsa_ossl.c | 329 | dsa/dsa_ossl.c |
328 | dsa/dsa_pmeth.c | 330 | dsa/dsa_pmeth.c |
329 | dsa/dsa_prn.c | 331 | dsa/dsa_prn.c |
@@ -552,6 +554,7 @@ set( | |||
552 | rsa/rsa_err.c | 554 | rsa/rsa_err.c |
553 | rsa/rsa_gen.c | 555 | rsa/rsa_gen.c |
554 | rsa/rsa_lib.c | 556 | rsa/rsa_lib.c |
557 | rsa/rsa_meth.c | ||
555 | rsa/rsa_none.c | 558 | rsa/rsa_none.c |
556 | rsa/rsa_oaep.c | 559 | rsa/rsa_oaep.c |
557 | rsa/rsa_pk1.c | 560 | rsa/rsa_pk1.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 8bfb4a9..3073342 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -209,6 +209,7 @@ endif | |||
209 | 209 | ||
210 | libcrypto_la_SOURCES += cpt_err.c | 210 | libcrypto_la_SOURCES += cpt_err.c |
211 | libcrypto_la_SOURCES += cryptlib.c | 211 | libcrypto_la_SOURCES += cryptlib.c |
212 | libcrypto_la_SOURCES += crypto_init.c | ||
212 | libcrypto_la_SOURCES += cversion.c | 213 | libcrypto_la_SOURCES += cversion.c |
213 | libcrypto_la_SOURCES += ex_data.c | 214 | libcrypto_la_SOURCES += ex_data.c |
214 | libcrypto_la_SOURCES += malloc-wrapper.c | 215 | libcrypto_la_SOURCES += malloc-wrapper.c |
@@ -485,6 +486,7 @@ libcrypto_la_SOURCES += dsa/dsa_err.c | |||
485 | libcrypto_la_SOURCES += dsa/dsa_gen.c | 486 | libcrypto_la_SOURCES += dsa/dsa_gen.c |
486 | libcrypto_la_SOURCES += dsa/dsa_key.c | 487 | libcrypto_la_SOURCES += dsa/dsa_key.c |
487 | libcrypto_la_SOURCES += dsa/dsa_lib.c | 488 | libcrypto_la_SOURCES += dsa/dsa_lib.c |
489 | libcrypto_la_SOURCES += dsa/dsa_meth.c | ||
488 | libcrypto_la_SOURCES += dsa/dsa_ossl.c | 490 | libcrypto_la_SOURCES += dsa/dsa_ossl.c |
489 | libcrypto_la_SOURCES += dsa/dsa_pmeth.c | 491 | libcrypto_la_SOURCES += dsa/dsa_pmeth.c |
490 | libcrypto_la_SOURCES += dsa/dsa_prn.c | 492 | libcrypto_la_SOURCES += dsa/dsa_prn.c |
@@ -785,6 +787,7 @@ libcrypto_la_SOURCES += rsa/rsa_eay.c | |||
785 | libcrypto_la_SOURCES += rsa/rsa_err.c | 787 | libcrypto_la_SOURCES += rsa/rsa_err.c |
786 | libcrypto_la_SOURCES += rsa/rsa_gen.c | 788 | libcrypto_la_SOURCES += rsa/rsa_gen.c |
787 | libcrypto_la_SOURCES += rsa/rsa_lib.c | 789 | libcrypto_la_SOURCES += rsa/rsa_lib.c |
790 | libcrypto_la_SOURCES += rsa/rsa_meth.c | ||
788 | libcrypto_la_SOURCES += rsa/rsa_none.c | 791 | libcrypto_la_SOURCES += rsa/rsa_none.c |
789 | libcrypto_la_SOURCES += rsa/rsa_oaep.c | 792 | libcrypto_la_SOURCES += rsa/rsa_oaep.c |
790 | libcrypto_la_SOURCES += rsa/rsa_pk1.c | 793 | libcrypto_la_SOURCES += rsa/rsa_pk1.c |
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index 93f20ee..c07f275 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt | |||
@@ -28,6 +28,7 @@ set( | |||
28 | ssl_ciph.c | 28 | ssl_ciph.c |
29 | ssl_clnt.c | 29 | ssl_clnt.c |
30 | ssl_err.c | 30 | ssl_err.c |
31 | ssl_init.c | ||
31 | ssl_lib.c | 32 | ssl_lib.c |
32 | ssl_packet.c | 33 | ssl_packet.c |
33 | ssl_pkt.c | 34 | ssl_pkt.c |
diff --git a/ssl/Makefile.am b/ssl/Makefile.am index 99d138a..189876e 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am | |||
@@ -31,6 +31,7 @@ libssl_la_SOURCES += ssl_cert.c | |||
31 | libssl_la_SOURCES += ssl_ciph.c | 31 | libssl_la_SOURCES += ssl_ciph.c |
32 | libssl_la_SOURCES += ssl_clnt.c | 32 | libssl_la_SOURCES += ssl_clnt.c |
33 | libssl_la_SOURCES += ssl_err.c | 33 | libssl_la_SOURCES += ssl_err.c |
34 | libssl_la_SOURCES += ssl_init.c | ||
34 | libssl_la_SOURCES += ssl_lib.c | 35 | libssl_la_SOURCES += ssl_lib.c |
35 | libssl_la_SOURCES += ssl_packet.c | 36 | libssl_la_SOURCES += ssl_packet.c |
36 | libssl_la_SOURCES += ssl_pkt.c | 37 | libssl_la_SOURCES += ssl_pkt.c |