Commit 6c3b5664 authored by Ben Laurie's avatar Ben Laurie
Browse files

Remove no longer existant structure member and direct references to EVP_MD_CTX internals.

parent 4eacfade
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -69,19 +69,21 @@
#  include <openssl/rsa.h>
# endif

#include "internal/evp_int.h"

static int init(EVP_MD_CTX *ctx)
{
    return MD2_Init(ctx->md_data);
    return MD2_Init(EVP_MD_CTX_md_data(ctx));
}

static int update(EVP_MD_CTX *ctx, const void *data, size_t count)
{
    return MD2_Update(ctx->md_data, data, count);
    return MD2_Update(EVP_MD_CTX_md_data(ctx), data, count);
}

static int final(EVP_MD_CTX *ctx, unsigned char *md)
{
    return MD2_Final(md, ctx->md_data);
    return MD2_Final(md, EVP_MD_CTX_md_data(ctx));
}

static const EVP_MD md2_md = {
@@ -94,13 +96,12 @@ static const EVP_MD md2_md = {
    final,
    NULL,
    NULL,
    EVP_PKEY_RSA_method,
    MD2_BLOCK,
    sizeof(EVP_MD *) + sizeof(MD2_CTX),
};

const EVP_MD *EVP_md2(void)
{
    return (&md2_md);
    return &md2_md;
}
#endif