mbed TLS Build
include/mbedtls/ripemd160.h@1:1a219dea6cb5, 2019-06-04 (annotated)
- Committer:
- williequesada
- Date:
- Tue Jun 04 16:03:38 2019 +0000
- Revision:
- 1:1a219dea6cb5
- Parent:
- 0:cdf462088d13
compartir a Pablo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
markrad | 0:cdf462088d13 | 1 | /** |
markrad | 0:cdf462088d13 | 2 | * \file ripemd160.h |
markrad | 0:cdf462088d13 | 3 | * |
markrad | 0:cdf462088d13 | 4 | * \brief RIPE MD-160 message digest |
markrad | 0:cdf462088d13 | 5 | * |
markrad | 0:cdf462088d13 | 6 | * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved |
markrad | 0:cdf462088d13 | 7 | * SPDX-License-Identifier: Apache-2.0 |
markrad | 0:cdf462088d13 | 8 | * |
markrad | 0:cdf462088d13 | 9 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
markrad | 0:cdf462088d13 | 10 | * not use this file except in compliance with the License. |
markrad | 0:cdf462088d13 | 11 | * You may obtain a copy of the License at |
markrad | 0:cdf462088d13 | 12 | * |
markrad | 0:cdf462088d13 | 13 | * http://www.apache.org/licenses/LICENSE-2.0 |
markrad | 0:cdf462088d13 | 14 | * |
markrad | 0:cdf462088d13 | 15 | * Unless required by applicable law or agreed to in writing, software |
markrad | 0:cdf462088d13 | 16 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
markrad | 0:cdf462088d13 | 17 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
markrad | 0:cdf462088d13 | 18 | * See the License for the specific language governing permissions and |
markrad | 0:cdf462088d13 | 19 | * limitations under the License. |
markrad | 0:cdf462088d13 | 20 | * |
markrad | 0:cdf462088d13 | 21 | * This file is part of mbed TLS (https://tls.mbed.org) |
markrad | 0:cdf462088d13 | 22 | */ |
markrad | 0:cdf462088d13 | 23 | #ifndef MBEDTLS_RIPEMD160_H |
markrad | 0:cdf462088d13 | 24 | #define MBEDTLS_RIPEMD160_H |
markrad | 0:cdf462088d13 | 25 | |
markrad | 0:cdf462088d13 | 26 | #if !defined(MBEDTLS_CONFIG_FILE) |
markrad | 0:cdf462088d13 | 27 | #include "config.h" |
markrad | 0:cdf462088d13 | 28 | #else |
markrad | 0:cdf462088d13 | 29 | #include MBEDTLS_CONFIG_FILE |
markrad | 0:cdf462088d13 | 30 | #endif |
markrad | 0:cdf462088d13 | 31 | |
markrad | 0:cdf462088d13 | 32 | #include <stddef.h> |
markrad | 0:cdf462088d13 | 33 | #include <stdint.h> |
markrad | 0:cdf462088d13 | 34 | |
markrad | 0:cdf462088d13 | 35 | #if !defined(MBEDTLS_RIPEMD160_ALT) |
markrad | 0:cdf462088d13 | 36 | // Regular implementation |
markrad | 0:cdf462088d13 | 37 | // |
markrad | 0:cdf462088d13 | 38 | |
markrad | 0:cdf462088d13 | 39 | #ifdef __cplusplus |
markrad | 0:cdf462088d13 | 40 | extern "C" { |
markrad | 0:cdf462088d13 | 41 | #endif |
markrad | 0:cdf462088d13 | 42 | |
markrad | 0:cdf462088d13 | 43 | /** |
markrad | 0:cdf462088d13 | 44 | * \brief RIPEMD-160 context structure |
markrad | 0:cdf462088d13 | 45 | */ |
markrad | 0:cdf462088d13 | 46 | typedef struct |
markrad | 0:cdf462088d13 | 47 | { |
markrad | 0:cdf462088d13 | 48 | uint32_t total[2]; /*!< number of bytes processed */ |
markrad | 0:cdf462088d13 | 49 | uint32_t state[5]; /*!< intermediate digest state */ |
markrad | 0:cdf462088d13 | 50 | unsigned char buffer[64]; /*!< data block being processed */ |
markrad | 0:cdf462088d13 | 51 | } |
markrad | 0:cdf462088d13 | 52 | mbedtls_ripemd160_context; |
markrad | 0:cdf462088d13 | 53 | |
markrad | 0:cdf462088d13 | 54 | /** |
markrad | 0:cdf462088d13 | 55 | * \brief Initialize RIPEMD-160 context |
markrad | 0:cdf462088d13 | 56 | * |
markrad | 0:cdf462088d13 | 57 | * \param ctx RIPEMD-160 context to be initialized |
markrad | 0:cdf462088d13 | 58 | */ |
markrad | 0:cdf462088d13 | 59 | void mbedtls_ripemd160_init( mbedtls_ripemd160_context *ctx ); |
markrad | 0:cdf462088d13 | 60 | |
markrad | 0:cdf462088d13 | 61 | /** |
markrad | 0:cdf462088d13 | 62 | * \brief Clear RIPEMD-160 context |
markrad | 0:cdf462088d13 | 63 | * |
markrad | 0:cdf462088d13 | 64 | * \param ctx RIPEMD-160 context to be cleared |
markrad | 0:cdf462088d13 | 65 | */ |
markrad | 0:cdf462088d13 | 66 | void mbedtls_ripemd160_free( mbedtls_ripemd160_context *ctx ); |
markrad | 0:cdf462088d13 | 67 | |
markrad | 0:cdf462088d13 | 68 | /** |
markrad | 0:cdf462088d13 | 69 | * \brief Clone (the state of) an RIPEMD-160 context |
markrad | 0:cdf462088d13 | 70 | * |
markrad | 0:cdf462088d13 | 71 | * \param dst The destination context |
markrad | 0:cdf462088d13 | 72 | * \param src The context to be cloned |
markrad | 0:cdf462088d13 | 73 | */ |
markrad | 0:cdf462088d13 | 74 | void mbedtls_ripemd160_clone( mbedtls_ripemd160_context *dst, |
markrad | 0:cdf462088d13 | 75 | const mbedtls_ripemd160_context *src ); |
markrad | 0:cdf462088d13 | 76 | |
markrad | 0:cdf462088d13 | 77 | /** |
markrad | 0:cdf462088d13 | 78 | * \brief RIPEMD-160 context setup |
markrad | 0:cdf462088d13 | 79 | * |
markrad | 0:cdf462088d13 | 80 | * \param ctx context to be initialized |
markrad | 0:cdf462088d13 | 81 | */ |
markrad | 0:cdf462088d13 | 82 | void mbedtls_ripemd160_starts( mbedtls_ripemd160_context *ctx ); |
markrad | 0:cdf462088d13 | 83 | |
markrad | 0:cdf462088d13 | 84 | /** |
markrad | 0:cdf462088d13 | 85 | * \brief RIPEMD-160 process buffer |
markrad | 0:cdf462088d13 | 86 | * |
markrad | 0:cdf462088d13 | 87 | * \param ctx RIPEMD-160 context |
markrad | 0:cdf462088d13 | 88 | * \param input buffer holding the data |
markrad | 0:cdf462088d13 | 89 | * \param ilen length of the input data |
markrad | 0:cdf462088d13 | 90 | */ |
markrad | 0:cdf462088d13 | 91 | void mbedtls_ripemd160_update( mbedtls_ripemd160_context *ctx, |
markrad | 0:cdf462088d13 | 92 | const unsigned char *input, size_t ilen ); |
markrad | 0:cdf462088d13 | 93 | |
markrad | 0:cdf462088d13 | 94 | /** |
markrad | 0:cdf462088d13 | 95 | * \brief RIPEMD-160 final digest |
markrad | 0:cdf462088d13 | 96 | * |
markrad | 0:cdf462088d13 | 97 | * \param ctx RIPEMD-160 context |
markrad | 0:cdf462088d13 | 98 | * \param output RIPEMD-160 checksum result |
markrad | 0:cdf462088d13 | 99 | */ |
markrad | 0:cdf462088d13 | 100 | void mbedtls_ripemd160_finish( mbedtls_ripemd160_context *ctx, unsigned char output[20] ); |
markrad | 0:cdf462088d13 | 101 | |
markrad | 0:cdf462088d13 | 102 | /* Internal use */ |
markrad | 0:cdf462088d13 | 103 | void mbedtls_ripemd160_process( mbedtls_ripemd160_context *ctx, const unsigned char data[64] ); |
markrad | 0:cdf462088d13 | 104 | |
markrad | 0:cdf462088d13 | 105 | #ifdef __cplusplus |
markrad | 0:cdf462088d13 | 106 | } |
markrad | 0:cdf462088d13 | 107 | #endif |
markrad | 0:cdf462088d13 | 108 | |
markrad | 0:cdf462088d13 | 109 | #else /* MBEDTLS_RIPEMD160_ALT */ |
markrad | 0:cdf462088d13 | 110 | #include "ripemd160.h" |
markrad | 0:cdf462088d13 | 111 | #endif /* MBEDTLS_RIPEMD160_ALT */ |
markrad | 0:cdf462088d13 | 112 | |
markrad | 0:cdf462088d13 | 113 | #ifdef __cplusplus |
markrad | 0:cdf462088d13 | 114 | extern "C" { |
markrad | 0:cdf462088d13 | 115 | #endif |
markrad | 0:cdf462088d13 | 116 | |
markrad | 0:cdf462088d13 | 117 | /** |
markrad | 0:cdf462088d13 | 118 | * \brief Output = RIPEMD-160( input buffer ) |
markrad | 0:cdf462088d13 | 119 | * |
markrad | 0:cdf462088d13 | 120 | * \param input buffer holding the data |
markrad | 0:cdf462088d13 | 121 | * \param ilen length of the input data |
markrad | 0:cdf462088d13 | 122 | * \param output RIPEMD-160 checksum result |
markrad | 0:cdf462088d13 | 123 | */ |
markrad | 0:cdf462088d13 | 124 | void mbedtls_ripemd160( const unsigned char *input, size_t ilen, |
markrad | 0:cdf462088d13 | 125 | unsigned char output[20] ); |
markrad | 0:cdf462088d13 | 126 | |
markrad | 0:cdf462088d13 | 127 | /** |
markrad | 0:cdf462088d13 | 128 | * \brief Checkup routine |
markrad | 0:cdf462088d13 | 129 | * |
markrad | 0:cdf462088d13 | 130 | * \return 0 if successful, or 1 if the test failed |
markrad | 0:cdf462088d13 | 131 | */ |
markrad | 0:cdf462088d13 | 132 | int mbedtls_ripemd160_self_test( int verbose ); |
markrad | 0:cdf462088d13 | 133 | |
markrad | 0:cdf462088d13 | 134 | #ifdef __cplusplus |
markrad | 0:cdf462088d13 | 135 | } |
markrad | 0:cdf462088d13 | 136 | #endif |
markrad | 0:cdf462088d13 | 137 | |
markrad | 0:cdf462088d13 | 138 | #endif /* mbedtls_ripemd160.h */ |