summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/cmac/cm_ameth.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use C99 initializers for the various FOO_METHOD structs. More readable, andmiod2014-04-271-19/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | avoid unreadable/unmaintainable constructs like that: const EVP_PKEY_ASN1_METHOD cmac_asn1_meth = { EVP_PKEY_CMAC, EVP_PKEY_CMAC, 0, "CMAC", "OpenSSL CMAC method", 0,0,0,0, 0,0,0, cmac_size, 0, 0,0,0,0,0,0,0, cmac_key_free, 0, 0,0 }; ok matthew@ deraadt@
* import OpenSSL-1.0.1cdjm2012-10-131-0/+97