aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2021-12-09 19:59:29 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2021-12-09 19:59:29 +0900
commita3a03842f68732cc08c0241c40cf99fd11a8a3a4 (patch)
tree967487a24021c685c623c38c769ccf4d821f6285
parent7fe1bf86e1e6bad7af99174c351d17e6f8d40144 (diff)
downloadportable-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.txt6
-rw-r--r--crypto/Makefile.am6
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
300libcrypto_la_SOURCES += asn1/a_mbstr.c 300libcrypto_la_SOURCES += asn1/a_mbstr.c
301libcrypto_la_SOURCES += asn1/a_object.c 301libcrypto_la_SOURCES += asn1/a_object.c
302libcrypto_la_SOURCES += asn1/a_octet.c 302libcrypto_la_SOURCES += asn1/a_octet.c
303libcrypto_la_SOURCES += asn1/a_pkey.c
304libcrypto_la_SOURCES += asn1/a_pubkey.c
303libcrypto_la_SOURCES += asn1/a_print.c 305libcrypto_la_SOURCES += asn1/a_print.c
304libcrypto_la_SOURCES += asn1/a_sign.c 306libcrypto_la_SOURCES += asn1/a_sign.c
305libcrypto_la_SOURCES += asn1/a_strex.c 307libcrypto_la_SOURCES += asn1/a_strex.c
@@ -319,14 +321,10 @@ libcrypto_la_SOURCES += asn1/asn_moid.c
319libcrypto_la_SOURCES += asn1/asn_pack.c 321libcrypto_la_SOURCES += asn1/asn_pack.c
320libcrypto_la_SOURCES += asn1/bio_asn1.c 322libcrypto_la_SOURCES += asn1/bio_asn1.c
321libcrypto_la_SOURCES += asn1/bio_ndef.c 323libcrypto_la_SOURCES += asn1/bio_ndef.c
322libcrypto_la_SOURCES += asn1/d2i_pr.c
323libcrypto_la_SOURCES += asn1/d2i_pu.c
324libcrypto_la_SOURCES += asn1/evp_asn1.c 324libcrypto_la_SOURCES += asn1/evp_asn1.c
325libcrypto_la_SOURCES += asn1/f_enum.c 325libcrypto_la_SOURCES += asn1/f_enum.c
326libcrypto_la_SOURCES += asn1/f_int.c 326libcrypto_la_SOURCES += asn1/f_int.c
327libcrypto_la_SOURCES += asn1/f_string.c 327libcrypto_la_SOURCES += asn1/f_string.c
328libcrypto_la_SOURCES += asn1/i2d_pr.c
329libcrypto_la_SOURCES += asn1/i2d_pu.c
330libcrypto_la_SOURCES += asn1/n_pkey.c 328libcrypto_la_SOURCES += asn1/n_pkey.c
331libcrypto_la_SOURCES += asn1/nsseq.c 329libcrypto_la_SOURCES += asn1/nsseq.c
332libcrypto_la_SOURCES += asn1/p5_pbe.c 330libcrypto_la_SOURCES += asn1/p5_pbe.c