match new with malloc -> calloc please
> +static inline HMAC_CTX *HMAC_CTX_new(void)
> +{
> + HMAC_CTX *ctx = malloc(sizeof(*ctx));
> + if (ctx == NULL)
> + return NULL;
> + HMAC_CTX_init(ctx);
> + return ctx;
> +}
> +
I'm intentionally verbose in the hopes that someone has a second look at
it, it's important to get right.
On Sun, Feb 04, 2018 at 09:00:51AM +, Maya Rashish wrote:
> Fix OpenSSL 1.1.0 build
> OpenSSL 1.1.0 makes xkusage and ex_flags opaque.
> Use X509_check_ca rather than a custom and nearly i