2011-01-06 15:20:01 +01:00
|
|
|
/**
|
|
|
|
* \file md_wrap.h
|
2014-05-01 13:03:14 +02:00
|
|
|
*
|
2011-01-06 15:20:01 +01:00
|
|
|
* \brief Message digest wrappers.
|
|
|
|
*
|
|
|
|
* \author Adriaan de Jong <dejong@fox-it.com>
|
|
|
|
*
|
2011-11-18 15:26:47 +01:00
|
|
|
* Copyright (C) 2006-2011, Brainspark B.V.
|
2011-01-06 15:20:01 +01:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2011-11-18 15:26:47 +01:00
|
|
|
#ifndef POLARSSL_MD_WRAP_H
|
|
|
|
#define POLARSSL_MD_WRAP_H
|
2011-01-06 15:20:01 +01:00
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2011-08-15 11:07:52 +02:00
|
|
|
#include "config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2011-08-15 11:07:52 +02:00
|
|
|
#include "md.h"
|
2011-01-06 15:20:01 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(POLARSSL_MD2_C)
|
|
|
|
extern const md_info_t md2_info;
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_MD4_C)
|
|
|
|
extern const md_info_t md4_info;
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_MD5_C)
|
|
|
|
extern const md_info_t md5_info;
|
|
|
|
#endif
|
2014-01-22 13:35:29 +01:00
|
|
|
#if defined(POLARSSL_RIPEMD160_C)
|
|
|
|
extern const md_info_t ripemd160_info;
|
2014-01-17 20:41:32 +01:00
|
|
|
#endif
|
2011-01-06 15:20:01 +01:00
|
|
|
#if defined(POLARSSL_SHA1_C)
|
|
|
|
extern const md_info_t sha1_info;
|
|
|
|
#endif
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA256_C)
|
2011-01-06 15:20:01 +01:00
|
|
|
extern const md_info_t sha224_info;
|
|
|
|
extern const md_info_t sha256_info;
|
|
|
|
#endif
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA512_C)
|
2011-01-06 15:20:01 +01:00
|
|
|
extern const md_info_t sha384_info;
|
|
|
|
extern const md_info_t sha512_info;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* POLARSSL_MD_WRAP_H */
|