2016-05-17 19:38:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
2018-12-06 12:40:06 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 19:38:09 +00:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
2005-11-30 20:57:23 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2005-11-30 20:57:23 +00:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_WHIRLPOOL
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
# include <openssl/evp.h>
|
|
|
|
# include <openssl/objects.h>
|
|
|
|
# include <openssl/x509.h>
|
|
|
|
# include <openssl/whrlpool.h>
|
2015-11-30 09:25:36 +00:00
|
|
|
# include "internal/evp_int.h"
|
2005-11-30 20:57:23 +00:00
|
|
|
|
|
|
|
static int init(EVP_MD_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2015-11-27 13:02:12 +00:00
|
|
|
return WHIRLPOOL_Init(EVP_MD_CTX_md_data(ctx));
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int update(EVP_MD_CTX *ctx, const void *data, size_t count)
|
|
|
|
{
|
2015-11-27 13:02:12 +00:00
|
|
|
return WHIRLPOOL_Update(EVP_MD_CTX_md_data(ctx), data, count);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int final(EVP_MD_CTX *ctx, unsigned char *md)
|
|
|
|
{
|
2015-11-27 13:02:12 +00:00
|
|
|
return WHIRLPOOL_Final(md, EVP_MD_CTX_md_data(ctx));
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2017-10-17 14:04:09 +00:00
|
|
|
return &whirlpool_md;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2005-11-30 20:57:23 +00:00
|
|
|
#endif
|