mbed TLS v2.11.0
ripemd160.h
Go to the documentation of this file.
1 
6 /*
7  * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
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  * This file is part of mbed TLS (https://tls.mbed.org)
23  */
24 #ifndef MBEDTLS_RIPEMD160_H
25 #define MBEDTLS_RIPEMD160_H
26 
27 #if !defined(MBEDTLS_CONFIG_FILE)
28 #include "config.h"
29 #else
30 #include MBEDTLS_CONFIG_FILE
31 #endif
32 
33 #include <stddef.h>
34 #include <stdint.h>
35 
36 #define MBEDTLS_ERR_RIPEMD160_HW_ACCEL_FAILED -0x0031
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41 
42 #if !defined(MBEDTLS_RIPEMD160_ALT)
43 // Regular implementation
44 //
45 
49 typedef struct
50 {
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.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 
225 int mbedtls_ripemd160_self_test( int verbose );
226 
227 #ifdef __cplusplus
228 }
229 #endif
230 
231 #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.
RIPE MD-160 message 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)
#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:49
void mbedtls_ripemd160_clone(mbedtls_ripemd160_context *dst, const mbedtls_ripemd160_context *src)
Clone (the state of) an 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 )