openssl/crypto/evp/m_wp.c

47 lines
873 B
C
Raw Normal View History

2005-11-30 20:57:23 +00:00
#include <stdio.h>
#include "internal/cryptlib.h"
2005-11-30 20:57:23 +00:00
#ifndef OPENSSL_NO_WHIRLPOOL
# include <openssl/evp.h>
# include <openssl/objects.h>
# include <openssl/x509.h>
# include <openssl/whrlpool.h>
# include "internal/evp_int.h"
2005-11-30 20:57:23 +00:00
static int init(EVP_MD_CTX *ctx)
{
return WHIRLPOOL_Init(EVP_MD_CTX_md_data(ctx));
}
static int update(EVP_MD_CTX *ctx, const void *data, size_t count)
{
return WHIRLPOOL_Update(EVP_MD_CTX_md_data(ctx), data, count);
}
static int final(EVP_MD_CTX *ctx, unsigned char *md)
{
return WHIRLPOOL_Final(md, EVP_MD_CTX_md_data(ctx));
}
static const EVP_MD whirlpool_md = {
NID_whirlpool,
0,
WHIRLPOOL_DIGEST_LENGTH,
0,
init,
update,
final,
NULL,
NULL,
WHIRLPOOL_BBLOCK / 8,
sizeof(EVP_MD *) + sizeof(WHIRLPOOL_CTX),
};
2005-11-30 20:57:23 +00:00
const EVP_MD *EVP_whirlpool(void)
{
return (&whirlpool_md);
}
2005-11-30 20:57:23 +00:00
#endif