Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-07-22 | Adapt bn_print() for EdDSA key printing | tb | 1 | -7/+40 | |
This is essentially a reimplementation of ASN1_buf_print(). The latter was only added for these printing purposes and it will be removed again since nothing uses it. We can then simply remove t_pkey.c in the upcoming bump. ok jsing | |||||
2023-07-22 | Simplify indent handling in bn_print() | tb | 1 | -6/+3 | |
variant of a suggestion by jsing | |||||
2023-07-22 | Fix #includes in ct_sct.c | tb | 1 | -5/+7 | |
This does not need tls1.h (upstream used TLSEXT constants we don't have) nor does it need evp.h. But it does need asn1.h, objects.h for STACK_OF and NID_*, among other things and it also uses uint64_t and allocates, so it needs stdint.h and stdlib.h. |