| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /** | 
| Simon Butcher | 5b331b9 | 2016-01-03 16:14:14 +0000 | [diff] [blame] | 2 | * \file sha1.h | 
| Paul Bakker | e0ccd0a | 2009-01-04 16:27:10 +0000 | [diff] [blame] | 3 | * | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 4 | * \brief This file contains SHA-1 definitions and functions. | 
|  | 5 | * | 
| Darryl Green | 11999bb | 2018-03-13 15:22:58 +0000 | [diff] [blame] | 6 | * The Secure Hash Algorithm 1 (SHA-1) cryptographic hash function is defined in | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 7 | * <em>FIPS 180-4: Secure Hash Standard (SHS)</em>. | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 8 | * | 
|  | 9 | * \warning   SHA-1 is considered a weak message digest and its use constitutes | 
|  | 10 | *            a security risk. We recommend considering stronger message | 
|  | 11 | *            digests instead. | 
| Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 12 | */ | 
|  | 13 | /* | 
| Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 14 | *  Copyright The Mbed TLS Contributors | 
| Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 15 | *  SPDX-License-Identifier: Apache-2.0 | 
|  | 16 | * | 
|  | 17 | *  Licensed under the Apache License, Version 2.0 (the "License"); you may | 
|  | 18 | *  not use this file except in compliance with the License. | 
|  | 19 | *  You may obtain a copy of the License at | 
|  | 20 | * | 
|  | 21 | *  http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 22 | * | 
|  | 23 | *  Unless required by applicable law or agreed to in writing, software | 
|  | 24 | *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 
|  | 25 | *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 26 | *  See the License for the specific language governing permissions and | 
|  | 27 | *  limitations under the License. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 28 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 29 | #ifndef MBEDTLS_SHA1_H | 
|  | 30 | #define MBEDTLS_SHA1_H | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 31 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 32 | #if !defined(MBEDTLS_CONFIG_FILE) | 
| Jaeden Amero | c49fbbf | 2019-07-04 20:01:14 +0100 | [diff] [blame] | 33 | #include "mbedtls/config.h" | 
| Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 34 | #else | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 35 | #include MBEDTLS_CONFIG_FILE | 
| Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 36 | #endif | 
| Paul Bakker | 90995b5 | 2013-06-24 19:20:35 +0200 | [diff] [blame] | 37 |  | 
| Rich Evans | 00ab470 | 2015-02-06 13:43:58 +0000 | [diff] [blame] | 38 | #include <stddef.h> | 
| Manuel Pégourié-Gonnard | ab22910 | 2015-04-15 11:53:16 +0200 | [diff] [blame] | 39 | #include <stdint.h> | 
| Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 40 |  | 
| Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 41 | /* MBEDTLS_ERR_SHA1_HW_ACCEL_FAILED is deprecated and should not be used. */ | 
|  | 42 | #define MBEDTLS_ERR_SHA1_HW_ACCEL_FAILED                  -0x0035  /**< SHA-1 hardware accelerator failed */ | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 43 | #define MBEDTLS_ERR_SHA1_BAD_INPUT_DATA                   -0x0073  /**< SHA-1 input data was malformed. */ | 
| Gilles Peskine | a381fe8 | 2018-01-23 18:16:11 +0100 | [diff] [blame] | 44 |  | 
| Paul Bakker | 407a0da | 2013-06-27 14:29:21 +0200 | [diff] [blame] | 45 | #ifdef __cplusplus | 
|  | 46 | extern "C" { | 
|  | 47 | #endif | 
|  | 48 |  | 
| Ron Eldor | b2aacec | 2017-05-18 16:53:08 +0300 | [diff] [blame] | 49 | #if !defined(MBEDTLS_SHA1_ALT) | 
|  | 50 | // Regular implementation | 
|  | 51 | // | 
|  | 52 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 53 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 54 | * \brief          The SHA-1 context structure. | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 55 | * | 
|  | 56 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 57 | *                 constitutes a security risk. We recommend considering | 
|  | 58 | *                 stronger message digests instead. | 
|  | 59 | * | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 60 | */ | 
| Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 61 | typedef struct mbedtls_sha1_context | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 62 | { | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 63 | uint32_t total[2];          /*!< The number of Bytes processed.  */ | 
|  | 64 | uint32_t state[5];          /*!< The intermediate digest state.  */ | 
|  | 65 | unsigned char buffer[64];   /*!< The data block being processed. */ | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 66 | } | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 67 | mbedtls_sha1_context; | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 68 |  | 
| Ron Eldor | b2aacec | 2017-05-18 16:53:08 +0300 | [diff] [blame] | 69 | #else  /* MBEDTLS_SHA1_ALT */ | 
|  | 70 | #include "sha1_alt.h" | 
|  | 71 | #endif /* MBEDTLS_SHA1_ALT */ | 
|  | 72 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 73 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 74 | * \brief          This function initializes a SHA-1 context. | 
| Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 75 | * | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 76 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 77 | *                 constitutes a security risk. We recommend considering | 
|  | 78 | *                 stronger message digests instead. | 
|  | 79 | * | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 80 | * \param ctx      The SHA-1 context to initialize. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 81 | *                 This must not be \c NULL. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 82 | * | 
| Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 83 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 84 | void mbedtls_sha1_init( mbedtls_sha1_context *ctx ); | 
| Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 85 |  | 
|  | 86 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 87 | * \brief          This function clears a SHA-1 context. | 
| Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 88 | * | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 89 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 90 | *                 constitutes a security risk. We recommend considering | 
|  | 91 | *                 stronger message digests instead. | 
|  | 92 | * | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 93 | * \param ctx      The SHA-1 context to clear. This may be \c NULL, | 
|  | 94 | *                 in which case this function does nothing. If it is | 
|  | 95 | *                 not \c NULL, it must point to an initialized | 
|  | 96 | *                 SHA-1 context. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 97 | * | 
| Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 98 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 99 | void mbedtls_sha1_free( mbedtls_sha1_context *ctx ); | 
| Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 100 |  | 
|  | 101 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 102 | * \brief          This function clones the state of a SHA-1 context. | 
| Manuel Pégourié-Gonnard | 16d412f | 2015-07-06 15:26:26 +0200 | [diff] [blame] | 103 | * | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 104 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 105 | *                 constitutes a security risk. We recommend considering | 
|  | 106 | *                 stronger message digests instead. | 
|  | 107 | * | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 108 | * \param dst      The SHA-1 context to clone to. This must be initialized. | 
|  | 109 | * \param src      The SHA-1 context to clone from. This must be initialized. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 110 | * | 
| Manuel Pégourié-Gonnard | 16d412f | 2015-07-06 15:26:26 +0200 | [diff] [blame] | 111 | */ | 
|  | 112 | void mbedtls_sha1_clone( mbedtls_sha1_context *dst, | 
|  | 113 | const mbedtls_sha1_context *src ); | 
|  | 114 |  | 
|  | 115 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 116 | * \brief          This function starts a SHA-1 checksum calculation. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 117 | * | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 118 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 119 | *                 constitutes a security risk. We recommend considering | 
|  | 120 | *                 stronger message digests instead. | 
|  | 121 | * | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 122 | * \param ctx      The SHA-1 context to initialize. This must be initialized. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 123 | * | 
|  | 124 | * \return         \c 0 on success. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 125 | * \return         A negative error code on failure. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 126 | * | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 127 | */ | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 128 | int mbedtls_sha1_starts_ret( mbedtls_sha1_context *ctx ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 129 |  | 
|  | 130 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 131 | * \brief          This function feeds an input buffer into an ongoing SHA-1 | 
|  | 132 | *                 checksum calculation. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 133 | * | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 134 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 135 | *                 constitutes a security risk. We recommend considering | 
|  | 136 | *                 stronger message digests instead. | 
|  | 137 | * | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 138 | * \param ctx      The SHA-1 context. This must be initialized | 
|  | 139 | *                 and have a hash operation started. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 140 | * \param input    The buffer holding the input data. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 141 | *                 This must be a readable buffer of length \p ilen Bytes. | 
|  | 142 | * \param ilen     The length of the input data \p input in Bytes. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 143 | * | 
|  | 144 | * \return         \c 0 on success. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 145 | * \return         A negative error code on failure. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 146 | */ | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 147 | int mbedtls_sha1_update_ret( mbedtls_sha1_context *ctx, | 
| Andres Amaya Garcia | 034ea7e | 2017-04-28 15:14:50 +0100 | [diff] [blame] | 148 | const unsigned char *input, | 
|  | 149 | size_t ilen ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 150 |  | 
|  | 151 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 152 | * \brief          This function finishes the SHA-1 operation, and writes | 
|  | 153 | *                 the result to the output buffer. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 154 | * | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 155 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 156 | *                 constitutes a security risk. We recommend considering | 
|  | 157 | *                 stronger message digests instead. | 
|  | 158 | * | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 159 | * \param ctx      The SHA-1 context to use. This must be initialized and | 
|  | 160 | *                 have a hash operation started. | 
|  | 161 | * \param output   The SHA-1 checksum result. This must be a writable | 
|  | 162 | *                 buffer of length \c 20 Bytes. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 163 | * | 
|  | 164 | * \return         \c 0 on success. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 165 | * \return         A negative error code on failure. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 166 | */ | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 167 | int mbedtls_sha1_finish_ret( mbedtls_sha1_context *ctx, | 
| Andres Amaya Garcia | 034ea7e | 2017-04-28 15:14:50 +0100 | [diff] [blame] | 168 | unsigned char output[20] ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 169 |  | 
| Andres Amaya Garcia | 034ea7e | 2017-04-28 15:14:50 +0100 | [diff] [blame] | 170 | /** | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 171 | * \brief          SHA-1 process data block (internal use only). | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 172 | * | 
|  | 173 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 174 | *                 constitutes a security risk. We recommend considering | 
|  | 175 | *                 stronger message digests instead. | 
|  | 176 | * | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 177 | * \param ctx      The SHA-1 context to use. This must be initialized. | 
|  | 178 | * \param data     The data block being processed. This must be a | 
|  | 179 | *                 readable buffer of length \c 64 Bytes. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 180 | * | 
|  | 181 | * \return         \c 0 on success. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 182 | * \return         A negative error code on failure. | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 183 | * | 
| Andres Amaya Garcia | 034ea7e | 2017-04-28 15:14:50 +0100 | [diff] [blame] | 184 | */ | 
| Andres Amaya Garcia | cccfe08 | 2017-06-28 10:36:39 +0100 | [diff] [blame] | 185 | int mbedtls_internal_sha1_process( mbedtls_sha1_context *ctx, | 
|  | 186 | const unsigned char data[64] ); | 
| Andres Amaya Garcia | 034ea7e | 2017-04-28 15:14:50 +0100 | [diff] [blame] | 187 |  | 
| Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 188 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) | 
|  | 189 | #if defined(MBEDTLS_DEPRECATED_WARNING) | 
|  | 190 | #define MBEDTLS_DEPRECATED      __attribute__((deprecated)) | 
|  | 191 | #else | 
|  | 192 | #define MBEDTLS_DEPRECATED | 
|  | 193 | #endif | 
|  | 194 | /** | 
|  | 195 | * \brief          This function starts a SHA-1 checksum calculation. | 
|  | 196 | * | 
|  | 197 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 198 | *                 constitutes a security risk. We recommend considering | 
|  | 199 | *                 stronger message digests instead. | 
|  | 200 | * | 
|  | 201 | * \deprecated     Superseded by mbedtls_sha1_starts_ret() in 2.7.0. | 
|  | 202 | * | 
|  | 203 | * \param ctx      The SHA-1 context to initialize. This must be initialized. | 
|  | 204 | * | 
|  | 205 | */ | 
|  | 206 | MBEDTLS_DEPRECATED void mbedtls_sha1_starts( mbedtls_sha1_context *ctx ); | 
|  | 207 |  | 
|  | 208 | /** | 
|  | 209 | * \brief          This function feeds an input buffer into an ongoing SHA-1 | 
|  | 210 | *                 checksum calculation. | 
|  | 211 | * | 
|  | 212 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 213 | *                 constitutes a security risk. We recommend considering | 
|  | 214 | *                 stronger message digests instead. | 
|  | 215 | * | 
|  | 216 | * \deprecated     Superseded by mbedtls_sha1_update_ret() in 2.7.0. | 
|  | 217 | * | 
|  | 218 | * \param ctx      The SHA-1 context. This must be initialized and | 
|  | 219 | *                 have a hash operation started. | 
|  | 220 | * \param input    The buffer holding the input data. | 
|  | 221 | *                 This must be a readable buffer of length \p ilen Bytes. | 
|  | 222 | * \param ilen     The length of the input data \p input in Bytes. | 
|  | 223 | * | 
|  | 224 | */ | 
|  | 225 | MBEDTLS_DEPRECATED void mbedtls_sha1_update( mbedtls_sha1_context *ctx, | 
|  | 226 | const unsigned char *input, | 
|  | 227 | size_t ilen ); | 
|  | 228 |  | 
|  | 229 | /** | 
|  | 230 | * \brief          This function finishes the SHA-1 operation, and writes | 
|  | 231 | *                 the result to the output buffer. | 
|  | 232 | * | 
|  | 233 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 234 | *                 constitutes a security risk. We recommend considering | 
|  | 235 | *                 stronger message digests instead. | 
|  | 236 | * | 
|  | 237 | * \deprecated     Superseded by mbedtls_sha1_finish_ret() in 2.7.0. | 
|  | 238 | * | 
|  | 239 | * \param ctx      The SHA-1 context. This must be initialized and | 
|  | 240 | *                 have a hash operation started. | 
|  | 241 | * \param output   The SHA-1 checksum result. | 
|  | 242 | *                 This must be a writable buffer of length \c 20 Bytes. | 
|  | 243 | */ | 
|  | 244 | MBEDTLS_DEPRECATED void mbedtls_sha1_finish( mbedtls_sha1_context *ctx, | 
|  | 245 | unsigned char output[20] ); | 
|  | 246 |  | 
|  | 247 | /** | 
|  | 248 | * \brief          SHA-1 process data block (internal use only). | 
|  | 249 | * | 
|  | 250 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 251 | *                 constitutes a security risk. We recommend considering | 
|  | 252 | *                 stronger message digests instead. | 
|  | 253 | * | 
|  | 254 | * \deprecated     Superseded by mbedtls_internal_sha1_process() in 2.7.0. | 
|  | 255 | * | 
|  | 256 | * \param ctx      The SHA-1 context. This must be initialized. | 
|  | 257 | * \param data     The data block being processed. | 
|  | 258 | *                 This must be a readable buffer of length \c 64 bytes. | 
|  | 259 | * | 
|  | 260 | */ | 
|  | 261 | MBEDTLS_DEPRECATED void mbedtls_sha1_process( mbedtls_sha1_context *ctx, | 
|  | 262 | const unsigned char data[64] ); | 
|  | 263 |  | 
|  | 264 | #undef MBEDTLS_DEPRECATED | 
|  | 265 | #endif /* !MBEDTLS_DEPRECATED_REMOVED */ | 
|  | 266 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 267 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 268 | * \brief          This function calculates the SHA-1 checksum of a buffer. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 269 | * | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 270 | *                 The function allocates the context, performs the | 
|  | 271 | *                 calculation, and frees the context. | 
| Andres Amaya Garcia | 034ea7e | 2017-04-28 15:14:50 +0100 | [diff] [blame] | 272 | * | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 273 | *                 The SHA-1 result is calculated as | 
|  | 274 | *                 output = SHA-1(input buffer). | 
|  | 275 | * | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 276 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 277 | *                 constitutes a security risk. We recommend considering | 
|  | 278 | *                 stronger message digests instead. | 
|  | 279 | * | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 280 | * \param input    The buffer holding the input data. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 281 | *                 This must be a readable buffer of length \p ilen Bytes. | 
|  | 282 | * \param ilen     The length of the input data \p input in Bytes. | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 283 | * \param output   The SHA-1 checksum result. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 284 | *                 This must be a writable buffer of length \c 20 Bytes. | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 285 | * | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 286 | * \return         \c 0 on success. | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 287 | * \return         A negative error code on failure. | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 288 | * | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 289 | */ | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 290 | int mbedtls_sha1_ret( const unsigned char *input, | 
| Andres Amaya Garcia | 034ea7e | 2017-04-28 15:14:50 +0100 | [diff] [blame] | 291 | size_t ilen, | 
|  | 292 | unsigned char output[20] ); | 
|  | 293 |  | 
| Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 294 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) | 
|  | 295 | #if defined(MBEDTLS_DEPRECATED_WARNING) | 
|  | 296 | #define MBEDTLS_DEPRECATED      __attribute__((deprecated)) | 
|  | 297 | #else | 
|  | 298 | #define MBEDTLS_DEPRECATED | 
|  | 299 | #endif | 
|  | 300 | /** | 
|  | 301 | * \brief          This function calculates the SHA-1 checksum of a buffer. | 
|  | 302 | * | 
|  | 303 | *                 The function allocates the context, performs the | 
|  | 304 | *                 calculation, and frees the context. | 
|  | 305 | * | 
|  | 306 | *                 The SHA-1 result is calculated as | 
|  | 307 | *                 output = SHA-1(input buffer). | 
|  | 308 | * | 
|  | 309 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 310 | *                 constitutes a security risk. We recommend considering | 
|  | 311 | *                 stronger message digests instead. | 
|  | 312 | * | 
|  | 313 | * \deprecated     Superseded by mbedtls_sha1_ret() in 2.7.0 | 
|  | 314 | * | 
|  | 315 | * \param input    The buffer holding the input data. | 
|  | 316 | *                 This must be a readable buffer of length \p ilen Bytes. | 
|  | 317 | * \param ilen     The length of the input data \p input in Bytes. | 
|  | 318 | * \param output   The SHA-1 checksum result. This must be a writable | 
|  | 319 | *                 buffer of size \c 20 Bytes. | 
|  | 320 | * | 
|  | 321 | */ | 
|  | 322 | MBEDTLS_DEPRECATED void mbedtls_sha1( const unsigned char *input, | 
|  | 323 | size_t ilen, | 
|  | 324 | unsigned char output[20] ); | 
|  | 325 |  | 
|  | 326 | #undef MBEDTLS_DEPRECATED | 
|  | 327 | #endif /* !MBEDTLS_DEPRECATED_REMOVED */ | 
|  | 328 |  | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 329 | #if defined(MBEDTLS_SELF_TEST) | 
|  | 330 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 331 | /** | 
| Rose Zadik | 44833d9 | 2018-01-26 08:41:09 +0000 | [diff] [blame] | 332 | * \brief          The SHA-1 checkup routine. | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 333 | * | 
| Hanno Becker | bbca8c5 | 2017-09-25 14:53:51 +0100 | [diff] [blame] | 334 | * \warning        SHA-1 is considered a weak message digest and its use | 
|  | 335 | *                 constitutes a security risk. We recommend considering | 
|  | 336 | *                 stronger message digests instead. | 
|  | 337 | * | 
| Rose Zadik | 8274142 | 2018-03-27 12:49:48 +0100 | [diff] [blame] | 338 | * \return         \c 0 on success. | 
|  | 339 | * \return         \c 1 on failure. | 
|  | 340 | * | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 341 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 342 | int mbedtls_sha1_self_test( int verbose ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 343 |  | 
| Andrzej Kurek | c470b6b | 2019-01-31 08:20:20 -0500 | [diff] [blame] | 344 | #endif /* MBEDTLS_SELF_TEST */ | 
|  | 345 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 346 | #ifdef __cplusplus | 
|  | 347 | } | 
|  | 348 | #endif | 
|  | 349 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 350 | #endif /* mbedtls_sha1.h */ |