2016-05-17 19:38:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:52:47 +00:00
|
|
|
*
|
2016-05-17 19:38:09 +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"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/x509.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
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
static const EVP_MD null_md = {
|
|
|
|
NID_undef,
|
|
|
|
NID_undef,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
init,
|
|
|
|
update,
|
|
|
|
final,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
sizeof(EVP_MD *),
|
|
|
|
};
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2001-03-09 02:51:02 +00:00
|
|
|
const EVP_MD *EVP_md_null(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return (&null_md);
|
|
|
|
}
|