2018-09-13 19:18:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2000-11-13 01:03:58 +00:00
|
|
|
*
|
2018-09-13 19:18:07 +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
|
2000-11-13 01:03:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2018-09-13 19:18:07 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2006-07-29 19:10:21 +00:00
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_MD4
|
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
# include <openssl/evp.h>
|
|
|
|
# include <openssl/objects.h>
|
|
|
|
# include <openssl/x509.h>
|
|
|
|
# include <openssl/md4.h>
|
2018-09-13 19:18:07 +00:00
|
|
|
# include <openssl/rsa.h>
|
2020-03-17 21:27:57 +00:00
|
|
|
# include "crypto/evp.h"
|
2012-07-11 23:31:36 +00:00
|
|
|
|
2003-01-28 21:43:22 +00:00
|
|
|
static int init(EVP_MD_CTX *ctx)
|
2015-03-20 15:28:40 +00:00
|
|
|
{
|
2018-09-13 19:18:07 +00:00
|
|
|
return MD4_Init(EVP_MD_CTX_md_data(ctx));
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
2003-01-28 21:43:22 +00:00
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
static int update(EVP_MD_CTX *ctx, const void *data, size_t count)
|
|
|
|
{
|
2018-09-13 19:18:07 +00:00
|
|
|
return MD4_Update(EVP_MD_CTX_md_data(ctx), data, count);
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
2003-01-28 21:43:22 +00:00
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
static int final(EVP_MD_CTX *ctx, unsigned char *md)
|
|
|
|
{
|
2018-09-13 19:18:07 +00:00
|
|
|
return MD4_Final(md, EVP_MD_CTX_md_data(ctx));
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
2003-01-28 21:43:22 +00:00
|
|
|
|
2015-03-20 15:28:40 +00:00
|
|
|
static const EVP_MD md4_md = {
|
|
|
|
NID_md4,
|
|
|
|
NID_md4WithRSAEncryption,
|
|
|
|
MD4_DIGEST_LENGTH,
|
|
|
|
0,
|
|
|
|
init,
|
|
|
|
update,
|
|
|
|
final,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
MD4_CBLOCK,
|
|
|
|
sizeof(EVP_MD *) + sizeof(MD4_CTX),
|
|
|
|
};
|
2000-11-13 01:03:58 +00:00
|
|
|
|
2003-01-28 21:43:22 +00:00
|
|
|
const EVP_MD *EVP_md4(void)
|
2015-03-20 15:28:40 +00:00
|
|
|
{
|
2018-09-13 19:18:07 +00:00
|
|
|
return &md4_md;
|
2015-03-20 15:28:40 +00:00
|
|
|
}
|
2000-11-13 01:03:58 +00:00
|
|
|
#endif
|