blob: 52d03b0ce895d5ec309d1d576f6d13cc51b5f34a [file] [log] [blame]
Paul Bakker89e80c92012-03-20 13:50:09 +00001/**
2 * \file gcm.h
3 *
Rose Zadikd8c4f612018-03-27 11:43:04 +01004 * \brief This file contains GCM definitions and functions.
5 *
6 * The Galois/Counter Mode (GCM) for 128-bit block ciphers is defined
7 * in <em>D. McGrew, J. Viega, The Galois/Counter Mode of Operation
8 * (GCM), Natl. Inst. Stand. Technol.</em>
Rose Zadik17b4f7f2018-01-26 10:56:42 +00009 *
10 * For more information on GCM, see <em>NIST SP 800-38D: Recommendation for
11 * Block Cipher Modes of Operation: Galois/Counter Mode (GCM) and GMAC</em>.
12 *
Darryl Greena40a1012018-01-05 15:33:17 +000013 */
14/*
Rose Zadik17b4f7f2018-01-26 10:56:42 +000015 * Copyright (C) 2006-2018, Arm Limited (or its affiliates), All Rights Reserved
Bence Szépkútif744bd72020-06-05 13:02:18 +020016 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
17 *
18 * This file is provided under the Apache License 2.0, or the
19 * GNU General Public License v2.0 or later.
20 *
21 * **********
22 * Apache License 2.0:
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020023 *
24 * Licensed under the Apache License, Version 2.0 (the "License"); you may
25 * not use this file except in compliance with the License.
26 * You may obtain a copy of the License at
27 *
28 * http://www.apache.org/licenses/LICENSE-2.0
29 *
30 * Unless required by applicable law or agreed to in writing, software
31 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
32 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 * See the License for the specific language governing permissions and
34 * limitations under the License.
Paul Bakker89e80c92012-03-20 13:50:09 +000035 *
Bence Szépkútif744bd72020-06-05 13:02:18 +020036 * **********
37 *
38 * **********
39 * GNU General Public License v2.0 or later:
40 *
41 * This program is free software; you can redistribute it and/or modify
42 * it under the terms of the GNU General Public License as published by
43 * the Free Software Foundation; either version 2 of the License, or
44 * (at your option) any later version.
45 *
46 * This program is distributed in the hope that it will be useful,
47 * but WITHOUT ANY WARRANTY; without even the implied warranty of
48 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
49 * GNU General Public License for more details.
50 *
51 * You should have received a copy of the GNU General Public License along
52 * with this program; if not, write to the Free Software Foundation, Inc.,
53 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
54 *
55 * **********
56 *
Rose Zadik17b4f7f2018-01-26 10:56:42 +000057 * This file is part of Mbed TLS (https://tls.mbed.org)
Paul Bakker89e80c92012-03-20 13:50:09 +000058 */
Rose Zadik17b4f7f2018-01-26 10:56:42 +000059
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020060#ifndef MBEDTLS_GCM_H
61#define MBEDTLS_GCM_H
Paul Bakker89e80c92012-03-20 13:50:09 +000062
Ron Eldor8b0cf2e2018-02-14 16:02:41 +020063#if !defined(MBEDTLS_CONFIG_FILE)
64#include "config.h"
65#else
66#include MBEDTLS_CONFIG_FILE
67#endif
68
Paul Bakker43aff2a2013-09-09 00:10:27 +020069#include "cipher.h"
Paul Bakker89e80c92012-03-20 13:50:09 +000070
71#include <stdint.h>
72
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020073#define MBEDTLS_GCM_ENCRYPT 1
74#define MBEDTLS_GCM_DECRYPT 0
Paul Bakker89e80c92012-03-20 13:50:09 +000075
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020076#define MBEDTLS_ERR_GCM_AUTH_FAILED -0x0012 /**< Authenticated decryption failed. */
Ron Eldor9924bdc2018-10-04 10:59:13 +030077
78/* MBEDTLS_ERR_GCM_HW_ACCEL_FAILED is deprecated and should not be used. */
Gilles Peskine7ecab3d2018-01-26 17:56:38 +010079#define MBEDTLS_ERR_GCM_HW_ACCEL_FAILED -0x0013 /**< GCM hardware accelerator failed. */
Ron Eldor9924bdc2018-10-04 10:59:13 +030080
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020081#define MBEDTLS_ERR_GCM_BAD_INPUT -0x0014 /**< Bad input parameters to function. */
Paul Bakker89e80c92012-03-20 13:50:09 +000082
Paul Bakker407a0da2013-06-27 14:29:21 +020083#ifdef __cplusplus
84extern "C" {
85#endif
86
Ron Eldor4e6d55d2018-02-07 16:36:15 +020087#if !defined(MBEDTLS_GCM_ALT)
88
Paul Bakker89e80c92012-03-20 13:50:09 +000089/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +000090 * \brief The GCM context structure.
Paul Bakker89e80c92012-03-20 13:50:09 +000091 */
Dawid Drozd428cc522018-07-24 10:02:47 +020092typedef struct mbedtls_gcm_context
93{
Rose Zadik17b4f7f2018-01-26 10:56:42 +000094 mbedtls_cipher_context_t cipher_ctx; /*!< The cipher context used. */
95 uint64_t HL[16]; /*!< Precalculated HTable low. */
96 uint64_t HH[16]; /*!< Precalculated HTable high. */
97 uint64_t len; /*!< The total length of the encrypted data. */
98 uint64_t add_len; /*!< The total length of the additional data. */
99 unsigned char base_ectr[16]; /*!< The first ECTR for tag. */
100 unsigned char y[16]; /*!< The Y working value. */
101 unsigned char buf[16]; /*!< The buf working value. */
102 int mode; /*!< The operation to perform:
103 #MBEDTLS_GCM_ENCRYPT or
104 #MBEDTLS_GCM_DECRYPT. */
Paul Bakker89e80c92012-03-20 13:50:09 +0000105}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200106mbedtls_gcm_context;
Paul Bakker89e80c92012-03-20 13:50:09 +0000107
Ron Eldor4e6d55d2018-02-07 16:36:15 +0200108#else /* !MBEDTLS_GCM_ALT */
109#include "gcm_alt.h"
110#endif /* !MBEDTLS_GCM_ALT */
111
Paul Bakker89e80c92012-03-20 13:50:09 +0000112/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000113 * \brief This function initializes the specified GCM context,
114 * to make references valid, and prepares the context
115 * for mbedtls_gcm_setkey() or mbedtls_gcm_free().
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200116 *
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000117 * The function does not bind the GCM context to a particular
118 * cipher, nor set the key. For this purpose, use
119 * mbedtls_gcm_setkey().
120 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100121 * \param ctx The GCM context to initialize. This must not be \c NULL.
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200122 */
123void mbedtls_gcm_init( mbedtls_gcm_context *ctx );
124
125/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000126 * \brief This function associates a GCM context with a
127 * cipher algorithm and a key.
Paul Bakker89e80c92012-03-20 13:50:09 +0000128 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100129 * \param ctx The GCM context. This must be initialized.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000130 * \param cipher The 128-bit block cipher to use.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100131 * \param key The encryption key. This must be a readable buffer of at
132 * least \p keybits bits.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000133 * \param keybits The key size in bits. Valid options are:
134 * <ul><li>128 bits</li>
135 * <li>192 bits</li>
136 * <li>256 bits</li></ul>
Paul Bakker89e80c92012-03-20 13:50:09 +0000137 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100138 * \return \c 0 on success.
139 * \return A cipher-specific error code on failure.
Paul Bakker89e80c92012-03-20 13:50:09 +0000140 */
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200141int mbedtls_gcm_setkey( mbedtls_gcm_context *ctx,
142 mbedtls_cipher_id_t cipher,
143 const unsigned char *key,
Manuel Pégourié-Gonnardb8186a52015-06-18 14:58:58 +0200144 unsigned int keybits );
Paul Bakker89e80c92012-03-20 13:50:09 +0000145
146/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000147 * \brief This function performs GCM encryption or decryption of a buffer.
Paul Bakker89e80c92012-03-20 13:50:09 +0000148 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100149 * \note For encryption, the output buffer can be the same as the
150 * input buffer. For decryption, the output buffer cannot be
151 * the same as input buffer. If the buffers overlap, the output
152 * buffer must trail at least 8 Bytes behind the input buffer.
Paul Bakkerca4ab492012-04-18 14:23:57 +0000153 *
Gilles Peskine80f679b2018-06-01 17:55:41 +0200154 * \warning When this function performs a decryption, it outputs the
155 * authentication tag and does not verify that the data is
156 * authentic. You should use this function to perform encryption
157 * only. For decryption, use mbedtls_gcm_auth_decrypt() instead.
158 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100159 * \param ctx The GCM context to use for encryption or decryption. This
160 * must be initialized.
Gilles Peskine0a0e08a2018-06-07 14:46:02 +0200161 * \param mode The operation to perform:
162 * - #MBEDTLS_GCM_ENCRYPT to perform authenticated encryption.
163 * The ciphertext is written to \p output and the
164 * authentication tag is written to \p tag.
165 * - #MBEDTLS_GCM_DECRYPT to perform decryption.
166 * The plaintext is written to \p output and the
167 * authentication tag is written to \p tag.
168 * Note that this mode is not recommended, because it does
169 * not verify the authenticity of the data. For this reason,
170 * you should use mbedtls_gcm_auth_decrypt() instead of
171 * calling this function in decryption mode.
Gilles Peskine80f679b2018-06-01 17:55:41 +0200172 * \param length The length of the input data, which is equal to the length
173 * of the output data.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100174 * \param iv The initialization vector. This must be a readable buffer of
175 * at least \p iv_len Bytes.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000176 * \param iv_len The length of the IV.
k-stachowiak6009ece2018-12-19 13:24:29 +0100177 * \param add The buffer holding the additional data. This must be of at
178 * least that size in Bytes.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000179 * \param add_len The length of the additional data.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100180 * \param input The buffer holding the input data. If \p length is greater
181 * than zero, this must be a readable buffer of at least that
182 * size in Bytes.
183 * \param output The buffer for holding the output data. If \p length is greater
184 * than zero, this must be a writable buffer of at least that
185 * size in Bytes.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000186 * \param tag_len The length of the tag to generate.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100187 * \param tag The buffer for holding the tag. This must be a readable
188 * buffer of at least \p tag_len Bytes.
Paul Bakker89e80c92012-03-20 13:50:09 +0000189 *
Gilles Peskine80f679b2018-06-01 17:55:41 +0200190 * \return \c 0 if the encryption or decryption was performed
191 * successfully. Note that in #MBEDTLS_GCM_DECRYPT mode,
192 * this does not indicate that the data is authentic.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100193 * \return #MBEDTLS_ERR_GCM_BAD_INPUT if the lengths or pointers are
194 * not valid or a cipher-specific error code if the encryption
Ron Eldor9924bdc2018-10-04 10:59:13 +0300195 * or decryption failed.
Paul Bakker89e80c92012-03-20 13:50:09 +0000196 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200197int mbedtls_gcm_crypt_and_tag( mbedtls_gcm_context *ctx,
Paul Bakker89e80c92012-03-20 13:50:09 +0000198 int mode,
199 size_t length,
200 const unsigned char *iv,
201 size_t iv_len,
202 const unsigned char *add,
203 size_t add_len,
204 const unsigned char *input,
205 unsigned char *output,
206 size_t tag_len,
207 unsigned char *tag );
208
209/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000210 * \brief This function performs a GCM authenticated decryption of a
211 * buffer.
Paul Bakker89e80c92012-03-20 13:50:09 +0000212 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100213 * \note For decryption, the output buffer cannot be the same as
214 * input buffer. If the buffers overlap, the output buffer
215 * must trail at least 8 Bytes behind the input buffer.
Paul Bakkerca4ab492012-04-18 14:23:57 +0000216 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100217 * \param ctx The GCM context. This must be initialized.
Gilles Peskine80f679b2018-06-01 17:55:41 +0200218 * \param length The length of the ciphertext to decrypt, which is also
219 * the length of the decrypted plaintext.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100220 * \param iv The initialization vector. This must be a readable buffer
221 * of at least \p iv_len Bytes.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000222 * \param iv_len The length of the IV.
k-stachowiak6009ece2018-12-19 13:24:29 +0100223 * \param add The buffer holding the additional data. This must be of at
224 * least that size in Bytes.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000225 * \param add_len The length of the additional data.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100226 * \param tag The buffer holding the tag to verify. This must be a
227 * readable buffer of at least \p tag_len Bytes.
Gilles Peskine80f679b2018-06-01 17:55:41 +0200228 * \param tag_len The length of the tag to verify.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100229 * \param input The buffer holding the ciphertext. If \p length is greater
230 * than zero, this must be a readable buffer of at least that
231 * size.
232 * \param output The buffer for holding the decrypted plaintext. If \p length
233 * is greater than zero, this must be a writable buffer of at
234 * least that size.
Paul Bakker89e80c92012-03-20 13:50:09 +0000235 *
Gilles Peskine80f679b2018-06-01 17:55:41 +0200236 * \return \c 0 if successful and authenticated.
237 * \return #MBEDTLS_ERR_GCM_AUTH_FAILED if the tag does not match.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100238 * \return #MBEDTLS_ERR_GCM_BAD_INPUT if the lengths or pointers are
239 * not valid or a cipher-specific error code if the decryption
240 * failed.
Paul Bakker89e80c92012-03-20 13:50:09 +0000241 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200242int mbedtls_gcm_auth_decrypt( mbedtls_gcm_context *ctx,
Paul Bakker89e80c92012-03-20 13:50:09 +0000243 size_t length,
244 const unsigned char *iv,
245 size_t iv_len,
246 const unsigned char *add,
247 size_t add_len,
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200248 const unsigned char *tag,
Paul Bakker89e80c92012-03-20 13:50:09 +0000249 size_t tag_len,
250 const unsigned char *input,
251 unsigned char *output );
252
253/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000254 * \brief This function starts a GCM encryption or decryption
255 * operation.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200256 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100257 * \param ctx The GCM context. This must be initialized.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000258 * \param mode The operation to perform: #MBEDTLS_GCM_ENCRYPT or
259 * #MBEDTLS_GCM_DECRYPT.
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100260 * \param iv The initialization vector. This must be a readable buffer of
261 * at least \p iv_len Bytes.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000262 * \param iv_len The length of the IV.
k-stachowiak2ae7ae52018-12-13 14:48:30 +0100263 * \param add The buffer holding the additional data, or \c NULL
264 * if \p add_len is \c 0.
265 * \param add_len The length of the additional data. If \c 0,
266 * \p add may be \c NULL.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200267 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100268 * \return \c 0 on success.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200269 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200270int mbedtls_gcm_starts( mbedtls_gcm_context *ctx,
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200271 int mode,
272 const unsigned char *iv,
273 size_t iv_len,
274 const unsigned char *add,
275 size_t add_len );
276
277/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000278 * \brief This function feeds an input buffer into an ongoing GCM
279 * encryption or decryption operation.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200280 *
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000281 * ` The function expects input to be a multiple of 16
282 * Bytes. Only the last call before calling
283 * mbedtls_gcm_finish() can be less than 16 Bytes.
284 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100285 * \note For decryption, the output buffer cannot be the same as
286 * input buffer. If the buffers overlap, the output buffer
287 * must trail at least 8 Bytes behind the input buffer.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200288 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100289 * \param ctx The GCM context. This must be initialized.
Rose Zadikd8c4f612018-03-27 11:43:04 +0100290 * \param length The length of the input data. This must be a multiple of
291 * 16 except in the last call before mbedtls_gcm_finish().
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100292 * \param input The buffer holding the input data. If \p length is greater
293 * than zero, this must be a readable buffer of at least that
294 * size in Bytes.
295 * \param output The buffer for holding the output data. If \p length is
296 * greater than zero, this must be a writable buffer of at
297 * least that size in Bytes.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200298 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100299 * \return \c 0 on success.
300 * \return #MBEDTLS_ERR_GCM_BAD_INPUT on failure.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200301 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200302int mbedtls_gcm_update( mbedtls_gcm_context *ctx,
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200303 size_t length,
304 const unsigned char *input,
305 unsigned char *output );
306
307/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000308 * \brief This function finishes the GCM operation and generates
309 * the authentication tag.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200310 *
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000311 * It wraps up the GCM stream, and generates the
312 * tag. The tag can have a maximum length of 16 Bytes.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200313 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100314 * \param ctx The GCM context. This must be initialized.
315 * \param tag The buffer for holding the tag. This must be a readable
316 * buffer of at least \p tag_len Bytes.
317 * \param tag_len The length of the tag to generate. This must be at least
318 * four.
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000319 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100320 * \return \c 0 on success.
321 * \return #MBEDTLS_ERR_GCM_BAD_INPUT on failure.
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200322 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200323int mbedtls_gcm_finish( mbedtls_gcm_context *ctx,
Paul Bakkerb9d3cfa2013-06-26 15:07:16 +0200324 unsigned char *tag,
325 size_t tag_len );
326
327/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000328 * \brief This function clears a GCM context and the underlying
329 * cipher sub-context.
Manuel Pégourié-Gonnard4fe92002013-09-13 13:45:58 +0200330 *
k-stachowiak8ffc92a2018-12-12 14:21:59 +0100331 * \param ctx The GCM context to clear. If this is \c NULL, the call has
k-stachowiak21298a22018-12-13 17:11:58 +0100332 * no effect. Otherwise, this must be initialized.
Manuel Pégourié-Gonnard4fe92002013-09-13 13:45:58 +0200333 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200334void mbedtls_gcm_free( mbedtls_gcm_context *ctx );
Manuel Pégourié-Gonnard4fe92002013-09-13 13:45:58 +0200335
Ron Eldorfa8f6352017-06-20 15:48:46 +0300336#if defined(MBEDTLS_SELF_TEST)
337
Manuel Pégourié-Gonnard4fe92002013-09-13 13:45:58 +0200338/**
Rose Zadik17b4f7f2018-01-26 10:56:42 +0000339 * \brief The GCM checkup routine.
Paul Bakker89e80c92012-03-20 13:50:09 +0000340 *
Rose Zadikd8c4f612018-03-27 11:43:04 +0100341 * \return \c 0 on success.
342 * \return \c 1 on failure.
Paul Bakker89e80c92012-03-20 13:50:09 +0000343 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200344int mbedtls_gcm_self_test( int verbose );
Paul Bakker89e80c92012-03-20 13:50:09 +0000345
Ron Eldorfa8f6352017-06-20 15:48:46 +0300346#endif /* MBEDTLS_SELF_TEST */
347
Paul Bakker89e80c92012-03-20 13:50:09 +0000348#ifdef __cplusplus
349}
350#endif
351
Jaeden Amero15263302017-09-21 12:53:48 +0100352
Paul Bakker89e80c92012-03-20 13:50:09 +0000353#endif /* gcm.h */