Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 1 | /** |
| 2 | * \file aria.h |
| 3 | * |
| 4 | * \brief ARIA block cipher |
| 5 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 6 | * 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 | */ |
| 12 | /* Copyright (C) 2006-2018, ARM Limited, All Rights Reserved |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 13 | * SPDX-License-Identifier: Apache-2.0 |
| 14 | * |
| 15 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 16 | * not use this file except in compliance with the License. |
| 17 | * You may obtain a copy of the License at |
| 18 | * |
| 19 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 20 | * |
| 21 | * Unless required by applicable law or agreed to in writing, software |
| 22 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 23 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 24 | * See the License for the specific language governing permissions and |
| 25 | * limitations under the License. |
| 26 | * |
| 27 | * This file is part of mbed TLS (https://tls.mbed.org) |
| 28 | */ |
| 29 | |
| 30 | #ifndef MBEDTLS_ARIA_H |
| 31 | #define MBEDTLS_ARIA_H |
| 32 | |
| 33 | #if !defined(MBEDTLS_CONFIG_FILE) |
| 34 | #include "config.h" |
| 35 | #else |
| 36 | #include MBEDTLS_CONFIG_FILE |
| 37 | #endif |
| 38 | |
| 39 | #include <stddef.h> |
| 40 | #include <stdint.h> |
| 41 | |
Hanno Becker | 2f47550 | 2018-12-17 13:19:06 +0000 | [diff] [blame] | 42 | #include "platform_util.h" |
| 43 | |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 44 | #define MBEDTLS_ARIA_ENCRYPT 1 /**< ARIA encryption. */ |
| 45 | #define MBEDTLS_ARIA_DECRYPT 0 /**< ARIA decryption. */ |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 46 | |
Manuel Pégourié-Gonnard | 8abc349 | 2018-03-01 10:02:47 +0100 | [diff] [blame] | 47 | #define MBEDTLS_ARIA_BLOCKSIZE 16 /**< ARIA block size in bytes. */ |
| 48 | #define MBEDTLS_ARIA_MAX_ROUNDS 16 /**< Maxiumum number of rounds in ARIA. */ |
| 49 | #define MBEDTLS_ARIA_MAX_KEYSIZE 32 /**< Maximum size of an ARIA key in bytes. */ |
Manuel Pégourié-Gonnard | 5ad88b6 | 2018-03-01 09:20:47 +0100 | [diff] [blame] | 50 | |
Hanno Becker | 2f47550 | 2018-12-17 13:19:06 +0000 | [diff] [blame] | 51 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
| 52 | #define MBEDTLS_ERR_ARIA_INVALID_KEY_LENGTH MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( -0x005C ) |
Hanno Becker | 2f47550 | 2018-12-17 13:19:06 +0000 | [diff] [blame] | 53 | #endif /* !MBEDTLS_DEPRECATED_REMOVED */ |
| 54 | #define MBEDTLS_ERR_ARIA_BAD_INPUT_DATA -0x005C /**< Bad input data. */ |
Ron Eldor | 9924bdc | 2018-10-04 10:59:13 +0300 | [diff] [blame] | 55 | |
Hanno Becker | a034369 | 2018-12-18 09:42:58 +0000 | [diff] [blame] | 56 | #define MBEDTLS_ERR_ARIA_INVALID_INPUT_LENGTH -0x005E /**< Invalid data input length. */ |
| 57 | |
Ron Eldor | 9924bdc | 2018-10-04 10:59:13 +0300 | [diff] [blame] | 58 | /* MBEDTLS_ERR_ARIA_FEATURE_UNAVAILABLE is deprecated and should not be used. |
| 59 | */ |
Manuel Pégourié-Gonnard | 3c80009 | 2018-03-01 09:02:16 +0100 | [diff] [blame] | 60 | #define MBEDTLS_ERR_ARIA_FEATURE_UNAVAILABLE -0x005A /**< Feature not available. For example, an unsupported ARIA key size. */ |
Ron Eldor | 9924bdc | 2018-10-04 10:59:13 +0300 | [diff] [blame] | 61 | |
| 62 | /* MBEDTLS_ERR_ARIA_HW_ACCEL_FAILED is deprecated and should not be used. */ |
Manuel Pégourié-Gonnard | 3c80009 | 2018-03-01 09:02:16 +0100 | [diff] [blame] | 63 | #define MBEDTLS_ERR_ARIA_HW_ACCEL_FAILED -0x0058 /**< ARIA hardware accelerator failed. */ |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 64 | |
| 65 | #if !defined(MBEDTLS_ARIA_ALT) |
| 66 | // Regular implementation |
| 67 | // |
| 68 | |
| 69 | #ifdef __cplusplus |
| 70 | extern "C" { |
| 71 | #endif |
| 72 | |
| 73 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 74 | * \brief The ARIA context-type definition. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 75 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 76 | typedef struct mbedtls_aria_context |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 77 | { |
Manuel Pégourié-Gonnard | 906bc90 | 2018-03-01 09:39:01 +0100 | [diff] [blame] | 78 | unsigned char nr; /*!< The number of rounds (12, 14 or 16) */ |
Manuel Pégourié-Gonnard | 5ad88b6 | 2018-03-01 09:20:47 +0100 | [diff] [blame] | 79 | /*! The ARIA round keys. */ |
| 80 | uint32_t rk[MBEDTLS_ARIA_MAX_ROUNDS + 1][MBEDTLS_ARIA_BLOCKSIZE / 4]; |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 81 | } |
| 82 | mbedtls_aria_context; |
| 83 | |
Manuel Pégourié-Gonnard | 0960b80 | 2018-05-22 15:22:07 +0200 | [diff] [blame] | 84 | #else /* MBEDTLS_ARIA_ALT */ |
| 85 | #include "aria_alt.h" |
| 86 | #endif /* MBEDTLS_ARIA_ALT */ |
| 87 | |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 88 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 89 | * \brief This function initializes the specified ARIA context. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 90 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 91 | * It must be the first API called before using |
| 92 | * the context. |
| 93 | * |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 94 | * \param ctx The ARIA context to initialize. Must not be \c NULL. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 95 | */ |
| 96 | void mbedtls_aria_init( mbedtls_aria_context *ctx ); |
| 97 | |
| 98 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 99 | * \brief This function releases and clears the specified ARIA context. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 100 | * |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 101 | * \param ctx The ARIA context to clear. May be \c NULL, in which |
| 102 | * case this function is a no-op. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 103 | */ |
| 104 | void mbedtls_aria_free( mbedtls_aria_context *ctx ); |
| 105 | |
| 106 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 107 | * \brief This function sets the encryption key. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 108 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 109 | * \param ctx The ARIA context to which the key should be bound. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 110 | * Must be initialized. |
| 111 | * \param key The encryption key. Must be a readable buffer |
| 112 | * of size \p keybits bits. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 113 | * \param keybits The size of data passed in bits. Valid options are: |
| 114 | * <ul><li>128 bits</li> |
| 115 | * <li>192 bits</li> |
| 116 | * <li>256 bits</li></ul> |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 117 | * |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 118 | * \return \c 0 on success. |
| 119 | * \return A negative error code on failure. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 120 | */ |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 121 | int mbedtls_aria_setkey_enc( mbedtls_aria_context *ctx, |
| 122 | const unsigned char *key, |
| 123 | unsigned int keybits ); |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 124 | |
| 125 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 126 | * \brief This function sets the decryption key. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 127 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 128 | * \param ctx The ARIA context to which the key should be bound. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 129 | * Must be initialized. |
| 130 | * \param key The decryption key. Must be a readable buffer |
| 131 | * of size \p keybits bits. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 132 | * \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. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 136 | * |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 137 | * \return \c 0 on success. |
| 138 | * \return A negative error code on failure. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 139 | */ |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 140 | int mbedtls_aria_setkey_dec( mbedtls_aria_context *ctx, |
| 141 | const unsigned char *key, |
| 142 | unsigned int keybits ); |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 143 | |
| 144 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 145 | * \brief This function performs an ARIA single-block encryption or |
| 146 | * decryption operation. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 147 | * |
Manuel Pégourié-Gonnard | 08c337d | 2018-05-22 13:18:01 +0200 | [diff] [blame] | 148 | * 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. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 151 | * |
Manuel Pégourié-Gonnard | 9d41073 | 2018-05-22 12:49:22 +0200 | [diff] [blame] | 152 | * mbedtls_aria_init(), and either mbedtls_aria_setkey_enc() or |
| 153 | * mbedtls_aria_setkey_dec() must be called before the first |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 154 | * call to this API with the same context. |
| 155 | * |
| 156 | * \param ctx The ARIA context to use for encryption or decryption. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 157 | * Must be initialized. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 158 | * \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. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 162 | * \return A negative error code on failure. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 163 | */ |
| 164 | int mbedtls_aria_crypt_ecb( mbedtls_aria_context *ctx, |
Manuel Pégourié-Gonnard | 5ad88b6 | 2018-03-01 09:20:47 +0100 | [diff] [blame] | 165 | const unsigned char input[MBEDTLS_ARIA_BLOCKSIZE], |
| 166 | unsigned char output[MBEDTLS_ARIA_BLOCKSIZE] ); |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 167 | |
| 168 | #if defined(MBEDTLS_CIPHER_MODE_CBC) |
| 169 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 170 | * \brief This function performs an ARIA-CBC encryption or decryption operation |
| 171 | * on full blocks. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 172 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 173 | * 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. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 176 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 177 | * It can be called as many times as needed, until all the input |
Manuel Pégourié-Gonnard | 9d41073 | 2018-05-22 12:49:22 +0200 | [diff] [blame] | 178 | * data is processed. mbedtls_aria_init(), and either |
| 179 | * mbedtls_aria_setkey_enc() or mbedtls_aria_setkey_dec() must be called |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 180 | * before the first call to this API with the same context. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 181 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 182 | * \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. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 194 | * Must be initialized. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 195 | * \param mode The ARIA operation: #MBEDTLS_ARIA_ENCRYPT or |
| 196 | * #MBEDTLS_ARIA_DECRYPT. |
| 197 | * \param length The length of the input data in Bytes. This must be a |
| 198 | * multiple of the block size (16 Bytes). |
| 199 | * \param iv Initialization vector (updated after use). |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 200 | * Must be a readable buffer of size 16 Bytes. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 201 | * \param input The buffer holding the input data. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 202 | * May be \c NULL if `length == 0`. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 203 | * \param output The buffer holding the output data. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 204 | * May be \c NULL if `length == 0`. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 205 | * |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 206 | * \return \c 0 on success. |
| 207 | * \return A negative error code on failure. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 208 | */ |
| 209 | int mbedtls_aria_crypt_cbc( mbedtls_aria_context *ctx, |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 210 | int mode, |
| 211 | size_t length, |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 212 | unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE], |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 213 | const unsigned char *input, |
| 214 | unsigned char *output ); |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 215 | #endif /* MBEDTLS_CIPHER_MODE_CBC */ |
| 216 | |
| 217 | #if defined(MBEDTLS_CIPHER_MODE_CFB) |
| 218 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 219 | * \brief This function performs an ARIA-CFB128 encryption or decryption |
| 220 | * operation. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 221 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 222 | * It performs the operation defined in the \p mode |
| 223 | * parameter (encrypt or decrypt), on the input data buffer |
| 224 | * defined in the \p input parameter. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 225 | * |
Manuel Pégourié-Gonnard | 9d41073 | 2018-05-22 12:49:22 +0200 | [diff] [blame] | 226 | * For CFB, you must set up the context with mbedtls_aria_setkey_enc(), |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 227 | * regardless of whether you are performing an encryption or decryption |
| 228 | * operation, that is, regardless of the \p mode parameter. This is |
| 229 | * because CFB mode uses the same key schedule for encryption and |
| 230 | * decryption. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 231 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 232 | * \note Upon exit, the content of the IV is updated so that you can |
| 233 | * call the same function again on the next |
| 234 | * block(s) of data and get the same result as if it was |
| 235 | * encrypted in one call. This allows a "streaming" usage. |
| 236 | * If you need to retain the contents of the |
| 237 | * IV, you must either save it manually or use the cipher |
| 238 | * module instead. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 239 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 240 | * |
| 241 | * \param ctx The ARIA context to use for encryption or decryption. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 242 | * Must be initialized. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 243 | * \param mode The ARIA operation: #MBEDTLS_ARIA_ENCRYPT or |
| 244 | * #MBEDTLS_ARIA_DECRYPT. |
| 245 | * \param length The length of the input data. |
| 246 | * \param iv_off The offset in IV (updated after use). |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 247 | * Must not be larger than 15. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 248 | * \param iv The initialization vector (updated after use). |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 249 | * Must be a readable buffer of size 16 Bytes. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 250 | * \param input The buffer holding the input data. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 251 | * May be \c NULL if `length == 0`. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 252 | * \param output The buffer holding the output data. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 253 | * May be \c NULL if `length == 0`. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 254 | * |
| 255 | * \return \c 0 on success. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 256 | * \return A negative error code on failure. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 257 | */ |
| 258 | int mbedtls_aria_crypt_cfb128( mbedtls_aria_context *ctx, |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 259 | int mode, |
| 260 | size_t length, |
| 261 | size_t *iv_off, |
Manuel Pégourié-Gonnard | 5ad88b6 | 2018-03-01 09:20:47 +0100 | [diff] [blame] | 262 | unsigned char iv[MBEDTLS_ARIA_BLOCKSIZE], |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 263 | const unsigned char *input, |
| 264 | unsigned char *output ); |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 265 | #endif /* MBEDTLS_CIPHER_MODE_CFB */ |
| 266 | |
| 267 | #if defined(MBEDTLS_CIPHER_MODE_CTR) |
| 268 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 269 | * \brief This function performs an ARIA-CTR encryption or decryption |
| 270 | * operation. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 271 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 272 | * This function performs the operation defined in the \p mode |
| 273 | * parameter (encrypt/decrypt), on the input data buffer |
| 274 | * defined in the \p input parameter. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 275 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 276 | * Due to the nature of CTR, you must use the same key schedule |
| 277 | * for both encryption and decryption operations. Therefore, you |
Manuel Pégourié-Gonnard | 9d41073 | 2018-05-22 12:49:22 +0200 | [diff] [blame] | 278 | * must use the context initialized with mbedtls_aria_setkey_enc() |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 279 | * for both #MBEDTLS_ARIA_ENCRYPT and #MBEDTLS_ARIA_DECRYPT. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 280 | * |
Manuel Pégourié-Gonnard | 22997b7 | 2018-02-28 12:29:41 +0100 | [diff] [blame] | 281 | * \warning You must never reuse a nonce value with the same key. Doing so |
| 282 | * would void the encryption for the two messages encrypted with |
| 283 | * the same nonce and key. |
| 284 | * |
| 285 | * There are two common strategies for managing nonces with CTR: |
| 286 | * |
Manuel Pégourié-Gonnard | 8a1b2c8 | 2018-05-23 13:26:22 +0200 | [diff] [blame] | 287 | * 1. You can handle everything as a single message processed over |
| 288 | * successive calls to this function. In that case, you want to |
| 289 | * set \p nonce_counter and \p nc_off to 0 for the first call, and |
| 290 | * then preserve the values of \p nonce_counter, \p nc_off and \p |
| 291 | * stream_block across calls to this function as they will be |
| 292 | * updated by this function. |
| 293 | * |
| 294 | * With this strategy, you must not encrypt more than 2**128 |
Manuel Pégourié-Gonnard | f584286 | 2018-05-24 11:51:58 +0200 | [diff] [blame] | 295 | * blocks of data with the same key. |
Manuel Pégourié-Gonnard | 22997b7 | 2018-02-28 12:29:41 +0100 | [diff] [blame] | 296 | * |
Manuel Pégourié-Gonnard | 8a1b2c8 | 2018-05-23 13:26:22 +0200 | [diff] [blame] | 297 | * 2. You can encrypt separate messages by dividing the \p |
| 298 | * nonce_counter buffer in two areas: the first one used for a |
| 299 | * per-message nonce, handled by yourself, and the second one |
| 300 | * updated by this function internally. |
| 301 | * |
| 302 | * For example, you might reserve the first 12 bytes for the |
| 303 | * per-message nonce, and the last 4 bytes for internal use. In that |
| 304 | * case, before calling this function on a new message you need to |
| 305 | * set the first 12 bytes of \p nonce_counter to your chosen nonce |
| 306 | * value, the last 4 to 0, and \p nc_off to 0 (which will cause \p |
| 307 | * stream_block to be ignored). That way, you can encrypt at most |
Manuel Pégourié-Gonnard | f584286 | 2018-05-24 11:51:58 +0200 | [diff] [blame] | 308 | * 2**96 messages of up to 2**32 blocks each with the same key. |
Manuel Pégourié-Gonnard | 8a1b2c8 | 2018-05-23 13:26:22 +0200 | [diff] [blame] | 309 | * |
| 310 | * The per-message nonce (or information sufficient to reconstruct |
| 311 | * it) needs to be communicated with the ciphertext and must be unique. |
| 312 | * The recommended way to ensure uniqueness is to use a message |
| 313 | * counter. An alternative is to generate random nonces, but this |
| 314 | * limits the number of messages that can be securely encrypted: |
| 315 | * for example, with 96-bit random nonces, you should not encrypt |
| 316 | * more than 2**32 messages with the same key. |
| 317 | * |
Manuel Pégourié-Gonnard | f584286 | 2018-05-24 11:51:58 +0200 | [diff] [blame] | 318 | * Note that for both stategies, sizes are measured in blocks and |
| 319 | * that an ARIA block is 16 bytes. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 320 | * |
Manuel Pégourié-Gonnard | fa0c47d | 2018-05-24 19:02:06 +0200 | [diff] [blame] | 321 | * \warning Upon return, \p stream_block contains sensitive data. Its |
Manuel Pégourié-Gonnard | 8a1b2c8 | 2018-05-23 13:26:22 +0200 | [diff] [blame] | 322 | * content must not be written to insecure storage and should be |
| 323 | * securely discarded as soon as it's no longer needed. |
| 324 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 325 | * \param ctx The ARIA context to use for encryption or decryption. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 326 | * Must be initialized. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 327 | * \param length The length of the input data. |
| 328 | * \param nc_off The offset in the current \p stream_block, for |
| 329 | * resuming within the current cipher stream. The |
| 330 | * offset pointer should be 0 at the start of a stream. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 331 | * Must not be larger than 15. |
| 332 | * \param nonce_counter The 128-bit nonce and counter. Must point to |
| 333 | * an RW-buffer of length 16 bytes. |
| 334 | * \param stream_block The saved stream block for resuming. Must point to |
| 335 | * an RW-buffer of length 16 bytes. |
| 336 | * This is overwritten by the function. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 337 | * \param input The buffer holding the input data. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 338 | * May be \c NULL if `length == 0`. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 339 | * \param output The buffer holding the output data. |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 340 | * May be \c NULL if `length == 0`. |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 341 | * |
Hanno Becker | 139d831 | 2018-12-11 21:29:27 +0000 | [diff] [blame^] | 342 | * \return \c 0 on success. |
| 343 | * \return A negative error code on failure. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 344 | */ |
| 345 | int mbedtls_aria_crypt_ctr( mbedtls_aria_context *ctx, |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 346 | size_t length, |
| 347 | size_t *nc_off, |
Manuel Pégourié-Gonnard | 5ad88b6 | 2018-03-01 09:20:47 +0100 | [diff] [blame] | 348 | unsigned char nonce_counter[MBEDTLS_ARIA_BLOCKSIZE], |
| 349 | unsigned char stream_block[MBEDTLS_ARIA_BLOCKSIZE], |
Manuel Pégourié-Gonnard | 4231e7f | 2018-02-28 10:54:31 +0100 | [diff] [blame] | 350 | const unsigned char *input, |
| 351 | unsigned char *output ); |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 352 | #endif /* MBEDTLS_CIPHER_MODE_CTR */ |
| 353 | |
Manuel Pégourié-Gonnard | c089312 | 2018-05-22 15:17:20 +0200 | [diff] [blame] | 354 | #if defined(MBEDTLS_SELF_TEST) |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 355 | /** |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 356 | * \brief Checkup routine. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 357 | * |
Manuel Pégourié-Gonnard | 5aa4e3b | 2018-02-28 11:55:49 +0100 | [diff] [blame] | 358 | * \return \c 0 on success, or \c 1 on failure. |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 359 | */ |
| 360 | int mbedtls_aria_self_test( int verbose ); |
Manuel Pégourié-Gonnard | c089312 | 2018-05-22 15:17:20 +0200 | [diff] [blame] | 361 | #endif /* MBEDTLS_SELF_TEST */ |
Markku-Juhani O. Saarinen | 41efbaa | 2017-11-30 11:37:55 +0000 | [diff] [blame] | 362 | |
| 363 | #ifdef __cplusplus |
| 364 | } |
| 365 | #endif |
| 366 | |
| 367 | #endif /* aria.h */ |