2011-01-06 14:20:01 +00:00
|
|
|
/**
|
2021-03-09 17:03:29 +00:00
|
|
|
* \file md_wrap.h
|
2014-05-01 11:03:14 +00:00
|
|
|
*
|
2011-01-06 14:20:01 +00:00
|
|
|
* \brief Message digest wrappers.
|
|
|
|
*
|
2015-03-24 11:13:30 +00:00
|
|
|
* \warning This in an internal header. Do not include directly.
|
|
|
|
*
|
2011-01-06 14:20:01 +00:00
|
|
|
* \author Adriaan de Jong <dejong@fox-it.com>
|
2018-01-05 15:33:17 +00:00
|
|
|
*/
|
|
|
|
/*
|
2020-08-07 11:07:28 +00:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2011-01-06 14:20:01 +00:00
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
#ifndef MBEDTLS_MD_WRAP_H
|
|
|
|
#define MBEDTLS_MD_WRAP_H
|
2011-01-06 14:20:01 +00:00
|
|
|
|
2021-05-27 09:25:03 +00:00
|
|
|
#include "mbedtls/build_info.h"
|
2015-02-13 14:12:07 +00:00
|
|
|
|
2019-07-04 19:01:14 +00:00
|
|
|
#include "mbedtls/md.h"
|
2011-01-06 14:20:01 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-03-24 11:13:30 +00:00
|
|
|
/**
|
|
|
|
* Message digest information.
|
|
|
|
* Allows message digest functions to be called in a generic way.
|
|
|
|
*/
|
2023-01-11 13:50:10 +00:00
|
|
|
struct mbedtls_md_info_t {
|
2019-07-19 14:03:39 +00:00
|
|
|
/** Digest identifier */
|
|
|
|
mbedtls_md_type_t type;
|
|
|
|
|
2015-06-18 12:58:58 +00:00
|
|
|
/** Output length of the digest function in bytes */
|
2019-07-19 14:03:39 +00:00
|
|
|
unsigned char size;
|
2015-03-24 11:13:30 +00:00
|
|
|
|
2023-06-21 10:02:07 +00:00
|
|
|
#if defined(MBEDTLS_MD_C)
|
2015-06-18 12:58:58 +00:00
|
|
|
/** Block length of the digest function in bytes */
|
2019-07-19 14:03:39 +00:00
|
|
|
unsigned char block_size;
|
2023-06-21 10:02:07 +00:00
|
|
|
#endif
|
2015-03-24 11:13:30 +00:00
|
|
|
};
|
|
|
|
|
2011-01-06 14:20:01 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#endif /* MBEDTLS_MD_WRAP_H */
|