2016-05-17 18:24:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2016-05-17 18:24:46 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* 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
|
1998-12-21 10:52:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2003-03-20 23:31:44 +00:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_MDC2
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
# include <openssl/evp.h>
|
|
|
|
# include <openssl/objects.h>
|
|
|
|
# include <openssl/x509.h>
|
|
|
|
# include <openssl/mdc2.h>
|
2016-03-18 18:30:20 +00:00
|
|
|
# include <openssl/rsa.h>
|
2015-11-30 09:25:36 +00:00
|
|
|
# include "internal/evp_int.h"
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2001-09-02 20:05:27 +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 MDC2_Init(EVP_MD_CTX_md_data(ctx));
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2001-09-02 20:05:27 +00:00
|
|
|
|
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 MDC2_Update(EVP_MD_CTX_md_data(ctx), data, count);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2001-09-02 20:05:27 +00:00
|
|
|
|
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 MDC2_Final(md, EVP_MD_CTX_md_data(ctx));
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2001-09-02 20:05:27 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
static const EVP_MD mdc2_md = {
|
|
|
|
NID_mdc2,
|
|
|
|
NID_mdc2WithRSA,
|
|
|
|
MDC2_DIGEST_LENGTH,
|
|
|
|
0,
|
|
|
|
init,
|
|
|
|
update,
|
|
|
|
final,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
MDC2_BLOCK,
|
|
|
|
sizeof(EVP_MD *) + sizeof(MDC2_CTX),
|
|
|
|
};
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2001-03-09 02:51:02 +00:00
|
|
|
const EVP_MD *EVP_mdc2(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return (&mdc2_md);
|
|
|
|
}
|
1999-04-27 04:18:53 +00:00
|
|
|
#endif
|