diff options
| author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-09 19:59:29 +0900 |
|---|---|---|
| committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-09 19:59:29 +0900 |
| commit | a3a03842f68732cc08c0241c40cf99fd11a8a3a4 (patch) | |
| tree | 967487a24021c685c623c38c769ccf4d821f6285 | |
| parent | 7fe1bf86e1e6bad7af99174c351d17e6f8d40144 (diff) | |
| download | portable-a3a03842f68732cc08c0241c40cf99fd11a8a3a4.tar.gz portable-a3a03842f68732cc08c0241c40cf99fd11a8a3a4.tar.bz2 portable-a3a03842f68732cc08c0241c40cf99fd11a8a3a4.zip | |
Consolidate d2i_pr.c/i2d_pr.c into a_pkey.c and
consolidate d2i_pu.c/i2d_pu.c into a_pubkey.c
| -rw-r--r-- | crypto/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | crypto/Makefile.am | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 75db747..670df83 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
| @@ -255,6 +255,8 @@ set( | |||
| 255 | asn1/a_mbstr.c | 255 | asn1/a_mbstr.c |
| 256 | asn1/a_object.c | 256 | asn1/a_object.c |
| 257 | asn1/a_octet.c | 257 | asn1/a_octet.c |
| 258 | asn1/a_pkey.c | ||
| 259 | asn1/a_pubkey.c | ||
| 258 | asn1/a_print.c | 260 | asn1/a_print.c |
| 259 | asn1/a_sign.c | 261 | asn1/a_sign.c |
| 260 | asn1/a_strex.c | 262 | asn1/a_strex.c |
| @@ -274,14 +276,10 @@ set( | |||
| 274 | asn1/asn_pack.c | 276 | asn1/asn_pack.c |
| 275 | asn1/bio_asn1.c | 277 | asn1/bio_asn1.c |
| 276 | asn1/bio_ndef.c | 278 | asn1/bio_ndef.c |
| 277 | asn1/d2i_pr.c | ||
| 278 | asn1/d2i_pu.c | ||
| 279 | asn1/evp_asn1.c | 279 | asn1/evp_asn1.c |
| 280 | asn1/f_enum.c | 280 | asn1/f_enum.c |
| 281 | asn1/f_int.c | 281 | asn1/f_int.c |
| 282 | asn1/f_string.c | 282 | asn1/f_string.c |
| 283 | asn1/i2d_pr.c | ||
| 284 | asn1/i2d_pu.c | ||
| 285 | asn1/n_pkey.c | 283 | asn1/n_pkey.c |
| 286 | asn1/nsseq.c | 284 | asn1/nsseq.c |
| 287 | asn1/p5_pbe.c | 285 | asn1/p5_pbe.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index ceab628..34bdd43 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
| @@ -300,6 +300,8 @@ libcrypto_la_SOURCES += asn1/a_int.c | |||
| 300 | libcrypto_la_SOURCES += asn1/a_mbstr.c | 300 | libcrypto_la_SOURCES += asn1/a_mbstr.c |
| 301 | libcrypto_la_SOURCES += asn1/a_object.c | 301 | libcrypto_la_SOURCES += asn1/a_object.c |
| 302 | libcrypto_la_SOURCES += asn1/a_octet.c | 302 | libcrypto_la_SOURCES += asn1/a_octet.c |
| 303 | libcrypto_la_SOURCES += asn1/a_pkey.c | ||
| 304 | libcrypto_la_SOURCES += asn1/a_pubkey.c | ||
| 303 | libcrypto_la_SOURCES += asn1/a_print.c | 305 | libcrypto_la_SOURCES += asn1/a_print.c |
| 304 | libcrypto_la_SOURCES += asn1/a_sign.c | 306 | libcrypto_la_SOURCES += asn1/a_sign.c |
| 305 | libcrypto_la_SOURCES += asn1/a_strex.c | 307 | libcrypto_la_SOURCES += asn1/a_strex.c |
| @@ -319,14 +321,10 @@ libcrypto_la_SOURCES += asn1/asn_moid.c | |||
| 319 | libcrypto_la_SOURCES += asn1/asn_pack.c | 321 | libcrypto_la_SOURCES += asn1/asn_pack.c |
| 320 | libcrypto_la_SOURCES += asn1/bio_asn1.c | 322 | libcrypto_la_SOURCES += asn1/bio_asn1.c |
| 321 | libcrypto_la_SOURCES += asn1/bio_ndef.c | 323 | libcrypto_la_SOURCES += asn1/bio_ndef.c |
| 322 | libcrypto_la_SOURCES += asn1/d2i_pr.c | ||
| 323 | libcrypto_la_SOURCES += asn1/d2i_pu.c | ||
| 324 | libcrypto_la_SOURCES += asn1/evp_asn1.c | 324 | libcrypto_la_SOURCES += asn1/evp_asn1.c |
| 325 | libcrypto_la_SOURCES += asn1/f_enum.c | 325 | libcrypto_la_SOURCES += asn1/f_enum.c |
| 326 | libcrypto_la_SOURCES += asn1/f_int.c | 326 | libcrypto_la_SOURCES += asn1/f_int.c |
| 327 | libcrypto_la_SOURCES += asn1/f_string.c | 327 | libcrypto_la_SOURCES += asn1/f_string.c |
| 328 | libcrypto_la_SOURCES += asn1/i2d_pr.c | ||
| 329 | libcrypto_la_SOURCES += asn1/i2d_pu.c | ||
| 330 | libcrypto_la_SOURCES += asn1/n_pkey.c | 328 | libcrypto_la_SOURCES += asn1/n_pkey.c |
| 331 | libcrypto_la_SOURCES += asn1/nsseq.c | 329 | libcrypto_la_SOURCES += asn1/nsseq.c |
| 332 | libcrypto_la_SOURCES += asn1/p5_pbe.c | 330 | libcrypto_la_SOURCES += asn1/p5_pbe.c |
