CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2021/12/04 08:38:10
Modified files:
lib/libcrypto : Makefile
Added files:
lib/libcrypto/asn1: a_pkey.c a_pubkey.c
Removed files:
lib/libcrypto/asn1: d2i_pr.c d2i_pu.c i2d_pr.c i2d_pu.c
Log message:
Consolidate {d2i,i2d}_{pr,pu}.c
Currently there are two files for private key ASN.1 (d2i_pr.c, i2d_pr.c)
and two files for public key ASN.1 (d2i_pu.c, i2d_pu.c). All of the other
ASN.1 code has d2i and i2d in the same per-object file.
Consolidate d2i_pr.c/i2d_pr.c into a_pkey.c and consolidate
d2i_pu.c/i2d_pu.c into a_pubkey.c before making any further changes to
this code.
ok tb@