blob: 2750840d12128189021d1fed8fb3ac05d40f20a8 [file] [log] [blame]
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +00001/**
2 * \file aria.h
3 *
4 * \brief ARIA block cipher
5 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +01006 * The ARIA algorithm is a symmetric block cipher that can encrypt and
7 * decrypt information. It is defined by the Korean Agency for
8 * Technology and Standards (KATS) in <em>KS X 1213:2004</em> (in
9 * Korean, but see http://210.104.33.10/ARIA/index-e.html in English)
10 * and also described by the IETF in <em>RFC 5794</em>.
11 */
Bence Szépkúti86974652020-06-15 11:59:37 +020012/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020013 * Copyright The Mbed TLS Contributors
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000014 * SPDX-License-Identifier: Apache-2.0
15 *
16 * Licensed under the Apache License, Version 2.0 (the "License"); you may
17 * not use this file except in compliance with the License.
18 * You may obtain a copy of the License at
19 *
20 * http://www.apache.org/licenses/LICENSE-2.0
21 *
22 * Unless required by applicable law or agreed to in writing, software
23 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25 * See the License for the specific language governing permissions and
26 * limitations under the License.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000027 */
28
29#ifndef MBEDTLS_ARIA_H
30#define MBEDTLS_ARIA_H
Mateusz Starzyk846f0212021-05-19 19:44:07 +020031#include "mbedtls/private_access.h"
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000032
Bence Szépkútic662b362021-05-27 11:25:03 +020033#include "mbedtls/build_info.h"
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000034
35#include <stddef.h>
36#include <stdint.h>
37
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010038#include "mbedtls/platform_util.h"
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050039
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010040#define MBEDTLS_ARIA_ENCRYPT 1 /**< ARIA encryption. */
41#define MBEDTLS_ARIA_DECRYPT 0 /**< ARIA decryption. */
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000042
Manuel Pégourié-Gonnard8abc3492018-03-01 10:02:47 +010043#define MBEDTLS_ARIA_BLOCKSIZE 16 /**< ARIA block size in bytes. */
Shaun Case8b0ecbc2021-12-20 21:14:10 -080044#define MBEDTLS_ARIA_MAX_ROUNDS 16 /**< Maximum number of rounds in ARIA. */
Manuel Pégourié-Gonnard8abc3492018-03-01 10:02:47 +010045#define MBEDTLS_ARIA_MAX_KEYSIZE 32 /**< Maximum size of an ARIA key in bytes. */
Manuel Pégourié-Gonnard5ad88b62018-03-01 09:20:47 +010046
Gilles Peskined2971572021-07-26 18:48:10 +020047/** Bad input data. */
48#define MBEDTLS_ERR_ARIA_BAD_INPUT_DATA -0x005C
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050049
Gilles Peskined2971572021-07-26 18:48:10 +020050/** Invalid data input length. */
51#define MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH -0x005E
Ron Eldor9924bdc2018-10-04 10:59:13 +030052
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000053#ifdef __cplusplus
54extern "C" {
55#endif
56
Gilles Peskine59392b02021-05-24 22:58:37 +020057#if !defined(MBEDTLS_ARIA_ALT)
58// Regular implementation
59//
60
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000061/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010062 * \brief The ARIA context-type definition.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000063 */
Gilles Peskine449bd832023-01-11 14:50:10 +010064typedef struct mbedtls_aria_context {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020065 unsigned char MBEDTLS_PRIVATE(nr); /*!< The number of rounds (12, 14 or 16) */
Manuel Pégourié-Gonnard5ad88b62018-03-01 09:20:47 +010066 /*! The ARIA round keys. */
Mateusz Starzyk846f0212021-05-19 19:44:07 +020067 uint32_t MBEDTLS_PRIVATE(rk)[MBEDTLS_ARIA_MAX_ROUNDS + 1][MBEDTLS_ARIA_BLOCKSIZE / 4];
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000068}
69mbedtls_aria_context;
70
Manuel Pégourié-Gonnard0960b802018-05-22 15:22:07 +020071#else /* MBEDTLS_ARIA_ALT */
72#include "aria_alt.h"
73#endif /* MBEDTLS_ARIA_ALT */
74
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000075/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010076 * \brief This function initializes the specified ARIA context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000077 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010078 * It must be the first API called before using
79 * the context.
80 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050081 * \param ctx The ARIA context to initialize. This must not be \c NULL.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000082 */
Gilles Peskine449bd832023-01-11 14:50:10 +010083void mbedtls_aria_init(mbedtls_aria_context *ctx);
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000084
85/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010086 * \brief This function releases and clears the specified ARIA context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000087 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050088 * \param ctx The ARIA context to clear. This may be \c NULL, in which
89 * case this function returns immediately. If it is not \c NULL,
90 * it must point to an initialized ARIA context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000091 */
Gilles Peskine449bd832023-01-11 14:50:10 +010092void mbedtls_aria_free(mbedtls_aria_context *ctx);
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000093
94/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010095 * \brief This function sets the encryption key.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000096 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010097 * \param ctx The ARIA context to which the key should be bound.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050098 * This must be initialized.
99 * \param key The encryption key. This must be a readable buffer
100 * of size \p keybits Bits.
101 * \param keybits The size of \p key in Bits. Valid options are:
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100102 * <ul><li>128 bits</li>
103 * <li>192 bits</li>
104 * <li>256 bits</li></ul>
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000105 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500106 * \return \c 0 on success.
107 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000108 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100109int mbedtls_aria_setkey_enc(mbedtls_aria_context *ctx,
110 const unsigned char *key,
111 unsigned int keybits);
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000112
Yanray Wangb67b4742023-10-31 17:10:32 +0800113#if !defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT)
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000114/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100115 * \brief This function sets the decryption key.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000116 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100117 * \param ctx The ARIA context to which the key should be bound.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500118 * This must be initialized.
119 * \param key The decryption key. This must be a readable buffer
120 * of size \p keybits Bits.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100121 * \param keybits The size of data passed. Valid options are:
122 * <ul><li>128 bits</li>
123 * <li>192 bits</li>
124 * <li>256 bits</li></ul>
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000125 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500126 * \return \c 0 on success.
127 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000128 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100129int mbedtls_aria_setkey_dec(mbedtls_aria_context *ctx,
130 const unsigned char *key,
131 unsigned int keybits);
Yanray Wangb67b4742023-10-31 17:10:32 +0800132#endif /* !MBEDTLS_BLOCK_CIPHER_NO_DECRYPT */
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000133
134/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100135 * \brief This function performs an ARIA single-block encryption or
136 * decryption operation.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000137 *
Manuel Pégourié-Gonnard08c337d2018-05-22 13:18:01 +0200138 * It performs encryption or decryption (depending on whether
139 * the key was set for encryption on decryption) on the input
140 * data buffer defined in the \p input parameter.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000141 *
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200142 * mbedtls_aria_init(), and either mbedtls_aria_setkey_enc() or
143 * mbedtls_aria_setkey_dec() must be called before the first
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100144 * call to this API with the same context.
145 *
146 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500147 * This must be initialized and bound to a key.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100148 * \param input The 16-Byte buffer holding the input data.
149 * \param output The 16-Byte buffer holding the output data.
150
151 * \return \c 0 on success.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500152 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000153 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100154int mbedtls_aria_crypt_ecb(mbedtls_aria_context *ctx,
155 const unsigned char input[MBEDTLS_ARIA_BLOCKSIZE],
156 unsigned char output[MBEDTLS_ARIA_BLOCKSIZE]);
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000157
158#if defined(MBEDTLS_CIPHER_MODE_CBC)
159/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100160 * \brief This function performs an ARIA-CBC encryption or decryption operation
161 * on full blocks.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000162 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100163 * It performs the operation defined in the \p mode
164 * parameter (encrypt/decrypt), on the input data buffer defined in
165 * the \p input parameter.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000166 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100167 * It can be called as many times as needed, until all the input
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200168 * data is processed. mbedtls_aria_init(), and either
169 * mbedtls_aria_setkey_enc() or mbedtls_aria_setkey_dec() must be called
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100170 * before the first call to this API with the same context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000171 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100172 * \note This function operates on aligned blocks, that is, the input size
173 * must be a multiple of the ARIA block size of 16 Bytes.
174 *
175 * \note Upon exit, the content of the IV is updated so that you can
176 * call the same function again on the next
177 * block(s) of data and get the same result as if it was
178 * encrypted in one call. This allows a "streaming" usage.
179 * If you need to retain the contents of the IV, you should
180 * either save it manually or use the cipher module instead.
181 *
182 *
183 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500184 * This must be initialized and bound to a key.
185 * \param mode The mode of operation. This must be either
186 * #MBEDTLS_ARIA_ENCRYPT for encryption, or
187 * #MBEDTLS_ARIA_DECRYPT for decryption.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100188 * \param length The length of the input data in Bytes. This must be a
189 * multiple of the block size (16 Bytes).
190 * \param iv Initialization vector (updated after use).
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500191 * This must be a readable buffer of size 16 Bytes.
192 * \param input The buffer holding the input data. This must
193 * be a readable buffer of length \p length Bytes.
194 * \param output The buffer holding the output data. This must
195 * be a writable buffer of length \p length Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100196 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500197 * \return \c 0 on success.
198 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000199 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100200int mbedtls_aria_crypt_cbc(mbedtls_aria_context *ctx,
201 int mode,
202 size_t length,
203 unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE],
204 const unsigned char *input,
205 unsigned char *output);
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000206#endif /* MBEDTLS_CIPHER_MODE_CBC */
207
208#if defined(MBEDTLS_CIPHER_MODE_CFB)
209/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100210 * \brief This function performs an ARIA-CFB128 encryption or decryption
211 * operation.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000212 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100213 * It performs the operation defined in the \p mode
214 * parameter (encrypt or decrypt), on the input data buffer
215 * defined in the \p input parameter.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000216 *
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200217 * For CFB, you must set up the context with mbedtls_aria_setkey_enc(),
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100218 * regardless of whether you are performing an encryption or decryption
219 * operation, that is, regardless of the \p mode parameter. This is
220 * because CFB mode uses the same key schedule for encryption and
221 * decryption.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000222 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100223 * \note Upon exit, the content of the IV is updated so that you can
224 * call the same function again on the next
225 * block(s) of data and get the same result as if it was
226 * encrypted in one call. This allows a "streaming" usage.
227 * If you need to retain the contents of the
228 * IV, you must either save it manually or use the cipher
229 * module instead.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000230 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100231 *
232 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500233 * This must be initialized and bound to a key.
234 * \param mode The mode of operation. This must be either
235 * #MBEDTLS_ARIA_ENCRYPT for encryption, or
236 * #MBEDTLS_ARIA_DECRYPT for decryption.
237 * \param length The length of the input data \p input in Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100238 * \param iv_off The offset in IV (updated after use).
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500239 * This must not be larger than 15.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100240 * \param iv The initialization vector (updated after use).
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500241 * This must be a readable buffer of size 16 Bytes.
242 * \param input The buffer holding the input data. This must
243 * be a readable buffer of length \p length Bytes.
244 * \param output The buffer holding the output data. This must
245 * be a writable buffer of length \p length Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100246 *
247 * \return \c 0 on success.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500248 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000249 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100250int mbedtls_aria_crypt_cfb128(mbedtls_aria_context *ctx,
251 int mode,
252 size_t length,
253 size_t *iv_off,
254 unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE],
255 const unsigned char *input,
256 unsigned char *output);
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000257#endif /* MBEDTLS_CIPHER_MODE_CFB */
258
259#if defined(MBEDTLS_CIPHER_MODE_CTR)
260/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100261 * \brief This function performs an ARIA-CTR encryption or decryption
262 * operation.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000263 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100264 * Due to the nature of CTR, you must use the same key schedule
265 * for both encryption and decryption operations. Therefore, you
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200266 * must use the context initialized with mbedtls_aria_setkey_enc()
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100267 * for both #MBEDTLS_ARIA_ENCRYPT and #MBEDTLS_ARIA_DECRYPT.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000268 *
Manuel Pégourié-Gonnard22997b72018-02-28 12:29:41 +0100269 * \warning You must never reuse a nonce value with the same key. Doing so
270 * would void the encryption for the two messages encrypted with
271 * the same nonce and key.
272 *
273 * There are two common strategies for managing nonces with CTR:
274 *
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200275 * 1. You can handle everything as a single message processed over
276 * successive calls to this function. In that case, you want to
277 * set \p nonce_counter and \p nc_off to 0 for the first call, and
278 * then preserve the values of \p nonce_counter, \p nc_off and \p
279 * stream_block across calls to this function as they will be
280 * updated by this function.
281 *
282 * With this strategy, you must not encrypt more than 2**128
Manuel Pégourié-Gonnardf5842862018-05-24 11:51:58 +0200283 * blocks of data with the same key.
Manuel Pégourié-Gonnard22997b72018-02-28 12:29:41 +0100284 *
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200285 * 2. You can encrypt separate messages by dividing the \p
286 * nonce_counter buffer in two areas: the first one used for a
287 * per-message nonce, handled by yourself, and the second one
288 * updated by this function internally.
289 *
290 * For example, you might reserve the first 12 bytes for the
291 * per-message nonce, and the last 4 bytes for internal use. In that
292 * case, before calling this function on a new message you need to
293 * set the first 12 bytes of \p nonce_counter to your chosen nonce
294 * value, the last 4 to 0, and \p nc_off to 0 (which will cause \p
295 * stream_block to be ignored). That way, you can encrypt at most
Manuel Pégourié-Gonnardf5842862018-05-24 11:51:58 +0200296 * 2**96 messages of up to 2**32 blocks each with the same key.
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200297 *
298 * The per-message nonce (or information sufficient to reconstruct
299 * it) needs to be communicated with the ciphertext and must be unique.
300 * The recommended way to ensure uniqueness is to use a message
301 * counter. An alternative is to generate random nonces, but this
302 * limits the number of messages that can be securely encrypted:
303 * for example, with 96-bit random nonces, you should not encrypt
304 * more than 2**32 messages with the same key.
305 *
Tom Cosgrove1e211442022-05-26 11:51:00 +0100306 * Note that for both strategies, sizes are measured in blocks and
Manuel Pégourié-Gonnardf5842862018-05-24 11:51:58 +0200307 * that an ARIA block is 16 bytes.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000308 *
Manuel Pégourié-Gonnardfa0c47d2018-05-24 19:02:06 +0200309 * \warning Upon return, \p stream_block contains sensitive data. Its
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200310 * content must not be written to insecure storage and should be
311 * securely discarded as soon as it's no longer needed.
312 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100313 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500314 * This must be initialized and bound to a key.
315 * \param length The length of the input data \p input in Bytes.
316 * \param nc_off The offset in Bytes in the current \p stream_block,
317 * for resuming within the current cipher stream. The
318 * offset pointer should be \c 0 at the start of a
319 * stream. This must not be larger than \c 15 Bytes.
320 * \param nonce_counter The 128-bit nonce and counter. This must point to
321 * a read/write buffer of length \c 16 bytes.
322 * \param stream_block The saved stream block for resuming. This must
323 * point to a read/write buffer of length \c 16 bytes.
324 * This is overwritten by the function.
325 * \param input The buffer holding the input data. This must
326 * be a readable buffer of length \p length Bytes.
327 * \param output The buffer holding the output data. This must
328 * be a writable buffer of length \p length Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100329 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500330 * \return \c 0 on success.
331 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000332 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100333int mbedtls_aria_crypt_ctr(mbedtls_aria_context *ctx,
334 size_t length,
335 size_t *nc_off,
336 unsigned char nonce_counter[MBEDTLS_ARIA_BLOCKSIZE],
337 unsigned char stream_block[MBEDTLS_ARIA_BLOCKSIZE],
338 const unsigned char *input,
339 unsigned char *output);
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000340#endif /* MBEDTLS_CIPHER_MODE_CTR */
341
Manuel Pégourié-Gonnardc0893122018-05-22 15:17:20 +0200342#if defined(MBEDTLS_SELF_TEST)
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000343/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100344 * \brief Checkup routine.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000345 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100346 * \return \c 0 on success, or \c 1 on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000347 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100348int mbedtls_aria_self_test(int verbose);
Manuel Pégourié-Gonnardc0893122018-05-22 15:17:20 +0200349#endif /* MBEDTLS_SELF_TEST */
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000350
351#ifdef __cplusplus
352}
353#endif
354
355#endif /* aria.h */