summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/PKCS7_add_attribute.3 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* describe six more PKCS7 attribute functionsschwarze2020-06-101-14/+208
|
* When X509_ATTRIBUTE_create() receives an invalid NID (e.g., -1), returnschwarze2020-06-041-12/+4
| | | | | | | | | | | failure rather than silently constructing a broken X509_ATTRIBUTE object that might cause NULL pointer accesses later on. This matters because X509_ATTRIBUTE_create() is used by documented API functions like PKCS7_add_attribute(3) and the NID comes straight from the user. This fixes a bug found while working on documentation. OK tb@ and "thanks" bluhm@
* new manual page PKCS7_add_attribute(3);schwarze2020-06-041-0/+179
tweaks and OK tb@