summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/a_pkey.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Indent goto labels for diffability.jsing2021-12-251-2/+2
| | | | Whitespace change only.
* Include evp_locl.h where it will be needed once most structs fromtb2021-12-121-1/+2
| | | | | | evp.h will be moved to evp_locl.h in an upcoming bump. ok inoguchi
* 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@