blob: a4b27b33bc50615880231729d232777b93530efc [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
31
32#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010033#include "mbedtls/config.h"
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000034#else
35#include MBEDTLS_CONFIG_FILE
36#endif
37
38#include <stddef.h>
39#include <stdint.h>
40
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010041#include "mbedtls/platform_util.h"
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050042
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010043#define MBEDTLS_ARIA_ENCRYPT 1 /**< ARIA encryption. */
44#define MBEDTLS_ARIA_DECRYPT 0 /**< ARIA decryption. */
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000045
Manuel Pégourié-Gonnard8abc3492018-03-01 10:02:47 +010046#define MBEDTLS_ARIA_BLOCKSIZE 16 /**< ARIA block size in bytes. */
47#define MBEDTLS_ARIA_MAX_ROUNDS 16 /**< Maxiumum number of rounds in ARIA. */
48#define MBEDTLS_ARIA_MAX_KEYSIZE 32 /**< Maximum size of an ARIA key in bytes. */
Manuel Pégourié-Gonnard5ad88b62018-03-01 09:20:47 +010049
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050050#if !defined(MBEDTLS_DEPRECATED_REMOVED)
51#define MBEDTLS_ERR_ARIA_INVALID_KEY_LENGTH MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( -0x005C )
52#endif /* !MBEDTLS_DEPRECATED_REMOVED */
53#define MBEDTLS_ERR_ARIA_BAD_INPUT_DATA -0x005C /**< Bad input data. */
54
55#define MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH -0x005E /**< Invalid data input length. */
Ron Eldor9924bdc2018-10-04 10:59:13 +030056
57/* MBEDTLS_ERR_ARIA_FEATURE_UNAVAILABLE is deprecated and should not be used.
58 */
Manuel Pégourié-Gonnard3c800092018-03-01 09:02:16 +010059#define MBEDTLS_ERR_ARIA_FEATURE_UNAVAILABLE -0x005A /**< Feature not available. For example, an unsupported ARIA key size. */
Ron Eldor9924bdc2018-10-04 10:59:13 +030060
61/* MBEDTLS_ERR_ARIA_HW_ACCEL_FAILED is deprecated and should not be used. */
Manuel Pégourié-Gonnard3c800092018-03-01 09:02:16 +010062#define MBEDTLS_ERR_ARIA_HW_ACCEL_FAILED -0x0058 /**< ARIA hardware accelerator failed. */
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000063
64#if !defined(MBEDTLS_ARIA_ALT)
65// Regular implementation
66//
67
68#ifdef __cplusplus
69extern "C" {
70#endif
71
72/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010073 * \brief The ARIA context-type definition.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000074 */
Dawid Drozd428cc522018-07-24 10:02:47 +020075typedef struct mbedtls_aria_context
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000076{
Manuel Pégourié-Gonnard906bc902018-03-01 09:39:01 +010077 unsigned char nr; /*!< The number of rounds (12, 14 or 16) */
Manuel Pégourié-Gonnard5ad88b62018-03-01 09:20:47 +010078 /*! The ARIA round keys. */
79 uint32_t rk[MBEDTLS_ARIA_MAX_ROUNDS + 1][MBEDTLS_ARIA_BLOCKSIZE / 4];
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000080}
81mbedtls_aria_context;
82
Manuel Pégourié-Gonnard0960b802018-05-22 15:22:07 +020083#else /* MBEDTLS_ARIA_ALT */
84#include "aria_alt.h"
85#endif /* MBEDTLS_ARIA_ALT */
86
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000087/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010088 * \brief This function initializes the specified ARIA context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000089 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010090 * It must be the first API called before using
91 * the context.
92 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -050093 * \param ctx The ARIA context to initialize. This must not be \c NULL.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000094 */
95void mbedtls_aria_init( mbedtls_aria_context *ctx );
96
97/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +010098 * \brief This function releases and clears the specified ARIA context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +000099 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500100 * \param ctx The ARIA context to clear. This may be \c NULL, in which
101 * case this function returns immediately. If it is not \c NULL,
102 * it must point to an initialized ARIA context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000103 */
104void mbedtls_aria_free( mbedtls_aria_context *ctx );
105
106/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100107 * \brief This function sets the encryption key.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000108 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100109 * \param ctx The ARIA context to which the key should be bound.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500110 * This must be initialized.
111 * \param key The encryption key. This must be a readable buffer
112 * of size \p keybits Bits.
113 * \param keybits The size of \p key in Bits. Valid options are:
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100114 * <ul><li>128 bits</li>
115 * <li>192 bits</li>
116 * <li>256 bits</li></ul>
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000117 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500118 * \return \c 0 on success.
119 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000120 */
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100121int mbedtls_aria_setkey_enc( mbedtls_aria_context *ctx,
122 const unsigned char *key,
123 unsigned int keybits );
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000124
125/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100126 * \brief This function sets the decryption key.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000127 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100128 * \param ctx The ARIA context to which the key should be bound.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500129 * This must be initialized.
130 * \param key The decryption key. This must be a readable buffer
131 * of size \p keybits Bits.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100132 * \param keybits The size of data passed. Valid options are:
133 * <ul><li>128 bits</li>
134 * <li>192 bits</li>
135 * <li>256 bits</li></ul>
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000136 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500137 * \return \c 0 on success.
138 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000139 */
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100140int mbedtls_aria_setkey_dec( mbedtls_aria_context *ctx,
141 const unsigned char *key,
142 unsigned int keybits );
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000143
144/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100145 * \brief This function performs an ARIA single-block encryption or
146 * decryption operation.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000147 *
Manuel Pégourié-Gonnard08c337d2018-05-22 13:18:01 +0200148 * It performs encryption or decryption (depending on whether
149 * the key was set for encryption on decryption) on the input
150 * data buffer defined in the \p input parameter.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000151 *
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200152 * mbedtls_aria_init(), and either mbedtls_aria_setkey_enc() or
153 * mbedtls_aria_setkey_dec() must be called before the first
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100154 * call to this API with the same context.
155 *
156 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500157 * This must be initialized and bound to a key.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100158 * \param input The 16-Byte buffer holding the input data.
159 * \param output The 16-Byte buffer holding the output data.
160
161 * \return \c 0 on success.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500162 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000163 */
164int mbedtls_aria_crypt_ecb( mbedtls_aria_context *ctx,
Manuel Pégourié-Gonnard5ad88b62018-03-01 09:20:47 +0100165 const unsigned char input[MBEDTLS_ARIA_BLOCKSIZE],
166 unsigned char output[MBEDTLS_ARIA_BLOCKSIZE] );
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000167
168#if defined(MBEDTLS_CIPHER_MODE_CBC)
169/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100170 * \brief This function performs an ARIA-CBC encryption or decryption operation
171 * on full blocks.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000172 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100173 * It performs the operation defined in the \p mode
174 * parameter (encrypt/decrypt), on the input data buffer defined in
175 * the \p input parameter.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000176 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100177 * It can be called as many times as needed, until all the input
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200178 * data is processed. mbedtls_aria_init(), and either
179 * mbedtls_aria_setkey_enc() or mbedtls_aria_setkey_dec() must be called
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100180 * before the first call to this API with the same context.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000181 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100182 * \note This function operates on aligned blocks, that is, the input size
183 * must be a multiple of the ARIA block size of 16 Bytes.
184 *
185 * \note Upon exit, the content of the IV is updated so that you can
186 * call the same function again on the next
187 * block(s) of data and get the same result as if it was
188 * encrypted in one call. This allows a "streaming" usage.
189 * If you need to retain the contents of the IV, you should
190 * either save it manually or use the cipher module instead.
191 *
192 *
193 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500194 * This must be initialized and bound to a key.
195 * \param mode The mode of operation. This must be either
196 * #MBEDTLS_ARIA_ENCRYPT for encryption, or
197 * #MBEDTLS_ARIA_DECRYPT for decryption.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100198 * \param length The length of the input data in Bytes. This must be a
199 * multiple of the block size (16 Bytes).
200 * \param iv Initialization vector (updated after use).
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500201 * This must be a readable buffer of size 16 Bytes.
202 * \param input The buffer holding the input data. This must
203 * be a readable buffer of length \p length Bytes.
204 * \param output The buffer holding the output data. This must
205 * be a writable buffer of length \p length Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100206 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500207 * \return \c 0 on success.
208 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000209 */
210int mbedtls_aria_crypt_cbc( mbedtls_aria_context *ctx,
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100211 int mode,
212 size_t length,
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100213 unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE],
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100214 const unsigned char *input,
215 unsigned char *output );
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000216#endif /* MBEDTLS_CIPHER_MODE_CBC */
217
218#if defined(MBEDTLS_CIPHER_MODE_CFB)
219/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100220 * \brief This function performs an ARIA-CFB128 encryption or decryption
221 * operation.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000222 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100223 * It performs the operation defined in the \p mode
224 * parameter (encrypt or decrypt), on the input data buffer
225 * defined in the \p input parameter.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000226 *
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200227 * For CFB, you must set up the context with mbedtls_aria_setkey_enc(),
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100228 * regardless of whether you are performing an encryption or decryption
229 * operation, that is, regardless of the \p mode parameter. This is
230 * because CFB mode uses the same key schedule for encryption and
231 * decryption.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000232 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100233 * \note Upon exit, the content of the IV is updated so that you can
234 * call the same function again on the next
235 * block(s) of data and get the same result as if it was
236 * encrypted in one call. This allows a "streaming" usage.
237 * If you need to retain the contents of the
238 * IV, you must either save it manually or use the cipher
239 * module instead.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000240 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100241 *
242 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500243 * This must be initialized and bound to a key.
244 * \param mode The mode of operation. This must be either
245 * #MBEDTLS_ARIA_ENCRYPT for encryption, or
246 * #MBEDTLS_ARIA_DECRYPT for decryption.
247 * \param length The length of the input data \p input in Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100248 * \param iv_off The offset in IV (updated after use).
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500249 * This must not be larger than 15.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100250 * \param iv The initialization vector (updated after use).
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500251 * This must be a readable buffer of size 16 Bytes.
252 * \param input The buffer holding the input data. This must
253 * be a readable buffer of length \p length Bytes.
254 * \param output The buffer holding the output data. This must
255 * be a writable buffer of length \p length Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100256 *
257 * \return \c 0 on success.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500258 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000259 */
260int mbedtls_aria_crypt_cfb128( mbedtls_aria_context *ctx,
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100261 int mode,
262 size_t length,
263 size_t *iv_off,
Manuel Pégourié-Gonnard5ad88b62018-03-01 09:20:47 +0100264 unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE],
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100265 const unsigned char *input,
266 unsigned char *output );
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000267#endif /* MBEDTLS_CIPHER_MODE_CFB */
268
269#if defined(MBEDTLS_CIPHER_MODE_CTR)
270/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100271 * \brief This function performs an ARIA-CTR encryption or decryption
272 * operation.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000273 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100274 * This function performs the operation defined in the \p mode
275 * parameter (encrypt/decrypt), on the input data buffer
276 * defined in the \p input parameter.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000277 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100278 * Due to the nature of CTR, you must use the same key schedule
279 * for both encryption and decryption operations. Therefore, you
Manuel Pégourié-Gonnard9d410732018-05-22 12:49:22 +0200280 * must use the context initialized with mbedtls_aria_setkey_enc()
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100281 * for both #MBEDTLS_ARIA_ENCRYPT and #MBEDTLS_ARIA_DECRYPT.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000282 *
Manuel Pégourié-Gonnard22997b72018-02-28 12:29:41 +0100283 * \warning You must never reuse a nonce value with the same key. Doing so
284 * would void the encryption for the two messages encrypted with
285 * the same nonce and key.
286 *
287 * There are two common strategies for managing nonces with CTR:
288 *
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200289 * 1. You can handle everything as a single message processed over
290 * successive calls to this function. In that case, you want to
291 * set \p nonce_counter and \p nc_off to 0 for the first call, and
292 * then preserve the values of \p nonce_counter, \p nc_off and \p
293 * stream_block across calls to this function as they will be
294 * updated by this function.
295 *
296 * With this strategy, you must not encrypt more than 2**128
Manuel Pégourié-Gonnardf5842862018-05-24 11:51:58 +0200297 * blocks of data with the same key.
Manuel Pégourié-Gonnard22997b72018-02-28 12:29:41 +0100298 *
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200299 * 2. You can encrypt separate messages by dividing the \p
300 * nonce_counter buffer in two areas: the first one used for a
301 * per-message nonce, handled by yourself, and the second one
302 * updated by this function internally.
303 *
304 * For example, you might reserve the first 12 bytes for the
305 * per-message nonce, and the last 4 bytes for internal use. In that
306 * case, before calling this function on a new message you need to
307 * set the first 12 bytes of \p nonce_counter to your chosen nonce
308 * value, the last 4 to 0, and \p nc_off to 0 (which will cause \p
309 * stream_block to be ignored). That way, you can encrypt at most
Manuel Pégourié-Gonnardf5842862018-05-24 11:51:58 +0200310 * 2**96 messages of up to 2**32 blocks each with the same key.
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200311 *
312 * The per-message nonce (or information sufficient to reconstruct
313 * it) needs to be communicated with the ciphertext and must be unique.
314 * The recommended way to ensure uniqueness is to use a message
315 * counter. An alternative is to generate random nonces, but this
316 * limits the number of messages that can be securely encrypted:
317 * for example, with 96-bit random nonces, you should not encrypt
318 * more than 2**32 messages with the same key.
319 *
Manuel Pégourié-Gonnardf5842862018-05-24 11:51:58 +0200320 * Note that for both stategies, sizes are measured in blocks and
321 * that an ARIA block is 16 bytes.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000322 *
Manuel Pégourié-Gonnardfa0c47d2018-05-24 19:02:06 +0200323 * \warning Upon return, \p stream_block contains sensitive data. Its
Manuel Pégourié-Gonnard8a1b2c82018-05-23 13:26:22 +0200324 * content must not be written to insecure storage and should be
325 * securely discarded as soon as it's no longer needed.
326 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100327 * \param ctx The ARIA context to use for encryption or decryption.
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500328 * This must be initialized and bound to a key.
329 * \param length The length of the input data \p input in Bytes.
330 * \param nc_off The offset in Bytes in the current \p stream_block,
331 * for resuming within the current cipher stream. The
332 * offset pointer should be \c 0 at the start of a
333 * stream. This must not be larger than \c 15 Bytes.
334 * \param nonce_counter The 128-bit nonce and counter. This must point to
335 * a read/write buffer of length \c 16 bytes.
336 * \param stream_block The saved stream block for resuming. This must
337 * point to a read/write buffer of length \c 16 bytes.
338 * This is overwritten by the function.
339 * \param input The buffer holding the input data. This must
340 * be a readable buffer of length \p length Bytes.
341 * \param output The buffer holding the output data. This must
342 * be a writable buffer of length \p length Bytes.
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100343 *
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500344 * \return \c 0 on success.
345 * \return A negative error code on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000346 */
347int mbedtls_aria_crypt_ctr( mbedtls_aria_context *ctx,
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100348 size_t length,
349 size_t *nc_off,
Manuel Pégourié-Gonnard5ad88b62018-03-01 09:20:47 +0100350 unsigned char nonce_counter[MBEDTLS_ARIA_BLOCKSIZE],
351 unsigned char stream_block[MBEDTLS_ARIA_BLOCKSIZE],
Manuel Pégourié-Gonnard4231e7f2018-02-28 10:54:31 +0100352 const unsigned char *input,
353 unsigned char *output );
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000354#endif /* MBEDTLS_CIPHER_MODE_CTR */
355
Manuel Pégourié-Gonnardc0893122018-05-22 15:17:20 +0200356#if defined(MBEDTLS_SELF_TEST)
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000357/**
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100358 * \brief Checkup routine.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000359 *
Manuel Pégourié-Gonnard5aa4e3b2018-02-28 11:55:49 +0100360 * \return \c 0 on success, or \c 1 on failure.
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000361 */
362int mbedtls_aria_self_test( int verbose );
Manuel Pégourié-Gonnardc0893122018-05-22 15:17:20 +0200363#endif /* MBEDTLS_SELF_TEST */
Markku-Juhani O. Saarinen41efbaa2017-11-30 11:37:55 +0000364
365#ifdef __cplusplus
366}
367#endif
368
369#endif /* aria.h */