Mbed TLS v2.28.5
ripemd160.h
Go to the documentation of this file.
1 
6 /*
7  * Copyright The Mbed TLS Contributors
8  * SPDX-License-Identifier: Apache-2.0
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License"); you may
11  * not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  */
22 #ifndef MBEDTLS_RIPEMD160_H
23 #define MBEDTLS_RIPEMD160_H
24 
25 #if !defined(MBEDTLS_CONFIG_FILE)
26 #include "mbedtls/config.h"
27 #else
28 #include MBEDTLS_CONFIG_FILE
29 #endif
30 
31 #include <stddef.h>
32 #include <stdint.h>
33 
34 /* MBEDTLS_ERR_RIPEMD160_HW_ACCEL_FAILED is deprecated and should not be used.
35  */
37 #define MBEDTLS_ERR_RIPEMD160_HW_ACCEL_FAILED -0x0031
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
43 #if !defined(MBEDTLS_RIPEMD160_ALT)
44 // Regular implementation
45 //
46 
50 typedef struct mbedtls_ripemd160_context {
51  uint32_t total[2];
52  uint32_t state[5];
53  unsigned char buffer[64];
54 }
56 
57 #else /* MBEDTLS_RIPEMD160_ALT */
58 #include "ripemd160_alt.h"
59 #endif /* MBEDTLS_RIPEMD160_ALT */
60 
67 
74 
82  const mbedtls_ripemd160_context *src);
83 
92 
103  const unsigned char *input,
104  size_t ilen);
105 
115  unsigned char output[20]);
116 
126  const unsigned char data[64]);
127 
128 #if !defined(MBEDTLS_DEPRECATED_REMOVED)
129 #if defined(MBEDTLS_DEPRECATED_WARNING)
130 #define MBEDTLS_DEPRECATED __attribute__((deprecated))
131 #else
132 #define MBEDTLS_DEPRECATED
133 #endif
134 
143 
155  const unsigned char *input,
156  size_t ilen);
157 
168  unsigned char output[20]);
169 
180  const unsigned char data[64]);
181 
182 #undef MBEDTLS_DEPRECATED
183 #endif /* !MBEDTLS_DEPRECATED_REMOVED */
184 
194 int mbedtls_ripemd160_ret(const unsigned char *input,
195  size_t ilen,
196  unsigned char output[20]);
197 
198 #if !defined(MBEDTLS_DEPRECATED_REMOVED)
199 #if defined(MBEDTLS_DEPRECATED_WARNING)
200 #define MBEDTLS_DEPRECATED __attribute__((deprecated))
201 #else
202 #define MBEDTLS_DEPRECATED
203 #endif
204 
213 MBEDTLS_DEPRECATED void mbedtls_ripemd160(const unsigned char *input,
214  size_t ilen,
215  unsigned char output[20]);
216 
217 #undef MBEDTLS_DEPRECATED
218 #endif /* !MBEDTLS_DEPRECATED_REMOVED */
219 
220 #if defined(MBEDTLS_SELF_TEST)
221 
227 int mbedtls_ripemd160_self_test(int verbose);
228 
229 #endif /* MBEDTLS_SELF_TEST */
230 
231 #ifdef __cplusplus
232 }
233 #endif
234 
235 #endif /* mbedtls_ripemd160.h */
int mbedtls_ripemd160_self_test(int verbose)
Checkup routine.
int mbedtls_ripemd160_ret(const unsigned char *input, size_t ilen, unsigned char output[20])
Output = RIPEMD-160( input buffer )
MBEDTLS_DEPRECATED void mbedtls_ripemd160_starts(mbedtls_ripemd160_context *ctx)
RIPEMD-160 context setup.
Configuration options (set of defines)
MBEDTLS_DEPRECATED void mbedtls_ripemd160_finish(mbedtls_ripemd160_context *ctx, unsigned char output[20])
RIPEMD-160 final digest.
int mbedtls_ripemd160_update_ret(mbedtls_ripemd160_context *ctx, const unsigned char *input, size_t ilen)
RIPEMD-160 process buffer.
void mbedtls_ripemd160_free(mbedtls_ripemd160_context *ctx)
Clear RIPEMD-160 context.
int mbedtls_internal_ripemd160_process(mbedtls_ripemd160_context *ctx, const unsigned char data[64])
RIPEMD-160 process data block (internal use only)
struct mbedtls_ripemd160_context mbedtls_ripemd160_context
RIPEMD-160 context structure.
#define MBEDTLS_DEPRECATED
Definition: ripemd160.h:202
int mbedtls_ripemd160_finish_ret(mbedtls_ripemd160_context *ctx, unsigned char output[20])
RIPEMD-160 final digest.
RIPEMD-160 context structure.
Definition: ripemd160.h:50
unsigned char buffer[64]
Definition: ripemd160.h:53
void mbedtls_ripemd160_clone(mbedtls_ripemd160_context *dst, const mbedtls_ripemd160_context *src)
Clone (the state of) a RIPEMD-160 context.
MBEDTLS_DEPRECATED void mbedtls_ripemd160_process(mbedtls_ripemd160_context *ctx, const unsigned char data[64])
RIPEMD-160 process data block (internal use only)
void mbedtls_ripemd160_init(mbedtls_ripemd160_context *ctx)
Initialize RIPEMD-160 context.
int mbedtls_ripemd160_starts_ret(mbedtls_ripemd160_context *ctx)
RIPEMD-160 context setup.
MBEDTLS_DEPRECATED void mbedtls_ripemd160_update(mbedtls_ripemd160_context *ctx, const unsigned char *input, size_t ilen)
RIPEMD-160 process buffer.
MBEDTLS_DEPRECATED void mbedtls_ripemd160(const unsigned char *input, size_t ilen, unsigned char output[20])
Output = RIPEMD-160( input buffer )