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
|
2015-09-04 12:21:07 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-01-06 14:20:01 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-01-06 14:20:01 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-01-06 14:20:01 +00:00
|
|
|
*
|
2015-09-04 12:21:07 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
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
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2019-07-04 19:01:14 +00:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 10:39:06 +00:00
|
|
|
#else
|
2015-04-08 10:49:31 +00:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 10:39:06 +00:00
|
|
|
#endif
|
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.
|
|
|
|
*/
|
2015-04-08 10:49:31 +00:00
|
|
|
struct mbedtls_md_info_t
|
2015-04-02 13:43:57 +00:00
|
|
|
{
|
2015-03-24 11:13:30 +00:00
|
|
|
/** Name of the message digest */
|
|
|
|
const char * name;
|
|
|
|
|
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
|
|
|
|
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;
|
2015-03-24 11:13:30 +00:00
|
|
|
};
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_MD5_C)
|
|
|
|
extern const mbedtls_md_info_t mbedtls_md5_info;
|
2011-01-06 14:20:01 +00:00
|
|
|
#endif
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_RIPEMD160_C)
|
|
|
|
extern const mbedtls_md_info_t mbedtls_ripemd160_info;
|
2014-01-17 19:41:32 +00:00
|
|
|
#endif
|
2015-04-08 10:49:31 +00:00
|
|
|
#if defined(MBEDTLS_SHA1_C)
|
|
|
|
extern const mbedtls_md_info_t mbedtls_sha1_info;
|
2011-01-06 14:20:01 +00:00
|
|
|
#endif
|
2021-04-19 14:46:28 +00:00
|
|
|
#if defined(MBEDTLS_SHA224_C)
|
2015-04-08 10:49:31 +00:00
|
|
|
extern const mbedtls_md_info_t mbedtls_sha224_info;
|
2021-04-19 14:46:28 +00:00
|
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_SHA256_C)
|
2015-04-08 10:49:31 +00:00
|
|
|
extern const mbedtls_md_info_t mbedtls_sha256_info;
|
2011-01-06 14:20:01 +00:00
|
|
|
#endif
|
2021-04-06 12:28:22 +00:00
|
|
|
#if defined(MBEDTLS_SHA384_C)
|
2015-04-08 10:49:31 +00:00
|
|
|
extern const mbedtls_md_info_t mbedtls_sha384_info;
|
2019-07-17 14:28:21 +00:00
|
|
|
#endif
|
2021-04-06 12:28:22 +00:00
|
|
|
#if defined(MBEDTLS_SHA512_C)
|
2015-04-08 10:49:31 +00:00
|
|
|
extern const mbedtls_md_info_t mbedtls_sha512_info;
|
2011-01-06 14:20:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
#endif /* MBEDTLS_MD_WRAP_H */
|