On 8/18/20 9:49 AM, Matt Caswell wrote:
>
>
> On 17/08/2020 18:55, John Baldwin wrote:
>> 1) Is 'auth_level' supposed to work for this? The CHANGES.md change
>>references SSL_CTX_set_security_level and openssl(1) claims that
>>'-auth_level' changes this? Is the CHANGES.md entry wrong an
Hi,
we are upgrading our codebase to openssl 1.1.1g from openssl 1.0.2k
Previously, all the ctx objects are allocated memory using "calloc"
typedef struct CryptWrapMDContext_t
{
#ifdef OPENSSL
EVP_MD_CTX evpMDCtx;
..
struct CryptWrapMDContext_t *pNext;
}
Allocation : return ((CryptW