summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/a_pkey.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Consolidate {d2i,i2d}_{pr,pu}.cjsing2021-12-041-0/+185
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@