2012-03-20 14:50:09 +01:00
|
|
|
/**
|
|
|
|
* \file gcm.h
|
|
|
|
*
|
2013-09-09 00:10:27 +02:00
|
|
|
* \brief Galois/Counter mode for 128-bit block ciphers
|
2012-03-20 14:50:09 +01:00
|
|
|
*
|
2013-06-27 14:29:21 +02:00
|
|
|
* Copyright (C) 2006-2013, Brainspark B.V.
|
2012-03-20 14:50:09 +01:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
#ifndef POLARSSL_GCM_H
|
|
|
|
#define POLARSSL_GCM_H
|
|
|
|
|
2013-09-09 00:10:27 +02:00
|
|
|
#include "cipher.h"
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2012-11-02 12:06:08 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <basetsd.h>
|
|
|
|
typedef UINT64 uint64_t;
|
|
|
|
#else
|
2012-03-20 14:50:09 +01:00
|
|
|
#include <stdint.h>
|
2012-11-02 12:06:08 +01:00
|
|
|
#endif
|
2012-03-20 14:50:09 +01:00
|
|
|
|
|
|
|
#define GCM_ENCRYPT 1
|
|
|
|
#define GCM_DECRYPT 0
|
|
|
|
|
|
|
|
#define POLARSSL_ERR_GCM_AUTH_FAILED -0x0012 /**< Authenticated decryption failed. */
|
2012-04-18 16:23:57 +02:00
|
|
|
#define POLARSSL_ERR_GCM_BAD_INPUT -0x0014 /**< Bad input parameters to function. */
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-06-27 14:29:21 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-03-20 14:50:09 +01:00
|
|
|
/**
|
|
|
|
* \brief GCM context structure
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2013-09-09 00:10:27 +02:00
|
|
|
cipher_context_t cipher_ctx;/*!< cipher context used */
|
2012-03-20 14:50:09 +01:00
|
|
|
uint64_t HL[16]; /*!< Precalculated HTable */
|
|
|
|
uint64_t HH[16]; /*!< Precalculated HTable */
|
2013-06-26 15:07:16 +02:00
|
|
|
uint64_t len; /*!< Total data length */
|
|
|
|
uint64_t add_len; /*!< Total add length */
|
|
|
|
unsigned char base_ectr[16];/*!< First ECTR for tag */
|
|
|
|
unsigned char y[16]; /*!< Y working value */
|
|
|
|
unsigned char buf[16]; /*!< buf working value */
|
|
|
|
int mode; /*!< Encrypt or Decrypt */
|
2012-03-20 14:50:09 +01:00
|
|
|
}
|
|
|
|
gcm_context;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief GCM initialization (encryption)
|
|
|
|
*
|
|
|
|
* \param ctx GCM context to be initialized
|
2013-09-09 00:10:27 +02:00
|
|
|
* \param cipher cipher to use (a 128-bit block cipher)
|
2012-03-20 14:50:09 +01:00
|
|
|
* \param key encryption key
|
|
|
|
* \param keysize must be 128, 192 or 256
|
|
|
|
*
|
2013-09-09 00:10:27 +02:00
|
|
|
* \return 0 if successful, or a cipher specific error code
|
2012-03-20 14:50:09 +01:00
|
|
|
*/
|
2013-09-09 00:10:27 +02:00
|
|
|
int gcm_init( gcm_context *ctx, cipher_id_t cipher, const unsigned char *key,
|
|
|
|
unsigned int keysize );
|
2012-03-20 14:50:09 +01:00
|
|
|
|
|
|
|
/**
|
2013-09-09 00:10:27 +02:00
|
|
|
* \brief GCM buffer encryption/decryption using a block cipher
|
2012-03-20 14:50:09 +01:00
|
|
|
*
|
2012-04-18 16:23:57 +02:00
|
|
|
* \note On encryption, the output buffer can be the same as the input buffer.
|
|
|
|
* On decryption, the output buffer cannot be the same as input buffer.
|
|
|
|
* If buffers overlap, the output buffer must trail at least 8 bytes
|
|
|
|
* behind the input buffer.
|
|
|
|
*
|
2012-03-20 14:50:09 +01:00
|
|
|
* \param ctx GCM context
|
|
|
|
* \param mode GCM_ENCRYPT or GCM_DECRYPT
|
|
|
|
* \param length length of the input data
|
|
|
|
* \param iv initialization vector
|
|
|
|
* \param iv_len length of IV
|
|
|
|
* \param add additional data
|
|
|
|
* \param add_len length of additional data
|
|
|
|
* \param input buffer holding the input data
|
|
|
|
* \param output buffer for holding the output data
|
|
|
|
* \param tag_len length of the tag to generate
|
|
|
|
* \param tag buffer for holding the tag
|
|
|
|
*
|
|
|
|
* \return 0 if successful
|
|
|
|
*/
|
|
|
|
int gcm_crypt_and_tag( gcm_context *ctx,
|
|
|
|
int mode,
|
|
|
|
size_t length,
|
|
|
|
const unsigned char *iv,
|
|
|
|
size_t iv_len,
|
|
|
|
const unsigned char *add,
|
|
|
|
size_t add_len,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output,
|
|
|
|
size_t tag_len,
|
|
|
|
unsigned char *tag );
|
|
|
|
|
|
|
|
/**
|
2013-09-09 00:10:27 +02:00
|
|
|
* \brief GCM buffer authenticated decryption using a block cipher
|
2012-03-20 14:50:09 +01:00
|
|
|
*
|
2012-04-18 16:23:57 +02:00
|
|
|
* \note On decryption, the output buffer cannot be the same as input buffer.
|
|
|
|
* If buffers overlap, the output buffer must trail at least 8 bytes
|
|
|
|
* behind the input buffer.
|
|
|
|
*
|
2012-03-20 14:50:09 +01:00
|
|
|
* \param ctx GCM context
|
|
|
|
* \param length length of the input data
|
|
|
|
* \param iv initialization vector
|
|
|
|
* \param iv_len length of IV
|
|
|
|
* \param add additional data
|
|
|
|
* \param add_len length of additional data
|
|
|
|
* \param tag buffer holding the tag
|
2013-06-26 15:07:16 +02:00
|
|
|
* \param tag_len length of the tag
|
2012-03-20 14:50:09 +01:00
|
|
|
* \param input buffer holding the input data
|
|
|
|
* \param output buffer for holding the output data
|
|
|
|
*
|
|
|
|
* \return 0 if successful and authenticated,
|
|
|
|
* POLARSSL_ERR_GCM_AUTH_FAILED if tag does not match
|
|
|
|
*/
|
|
|
|
int gcm_auth_decrypt( gcm_context *ctx,
|
|
|
|
size_t length,
|
|
|
|
const unsigned char *iv,
|
|
|
|
size_t iv_len,
|
|
|
|
const unsigned char *add,
|
|
|
|
size_t add_len,
|
2013-06-26 15:07:16 +02:00
|
|
|
const unsigned char *tag,
|
2012-03-20 14:50:09 +01:00
|
|
|
size_t tag_len,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output );
|
|
|
|
|
2013-06-26 15:07:16 +02:00
|
|
|
/**
|
|
|
|
* \brief Generic GCM stream start function
|
|
|
|
*
|
|
|
|
* \param ctx GCM context
|
|
|
|
* \param mode GCM_ENCRYPT or GCM_DECRYPT
|
|
|
|
* \param iv initialization vector
|
|
|
|
* \param iv_len length of IV
|
2013-08-31 17:31:03 +02:00
|
|
|
* \param add additional data (or NULL if length is 0)
|
2013-06-26 15:07:16 +02:00
|
|
|
* \param add_len length of additional data
|
|
|
|
*
|
|
|
|
* \return 0 if successful
|
|
|
|
*/
|
|
|
|
int gcm_starts( gcm_context *ctx,
|
|
|
|
int mode,
|
|
|
|
const unsigned char *iv,
|
|
|
|
size_t iv_len,
|
|
|
|
const unsigned char *add,
|
|
|
|
size_t add_len );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Generic GCM update function. Encrypts/decrypts using the
|
|
|
|
* given GCM context. Expects input to be a multiple of 16
|
|
|
|
* bytes! Only the last call before gcm_finish() can be less
|
|
|
|
* than 16 bytes!
|
|
|
|
*
|
|
|
|
* \note On decryption, the output buffer cannot be the same as input buffer.
|
|
|
|
* If buffers overlap, the output buffer must trail at least 8 bytes
|
|
|
|
* behind the input buffer.
|
|
|
|
*
|
|
|
|
* \param ctx GCM context
|
|
|
|
* \param length length of the input data
|
|
|
|
* \param input buffer holding the input data
|
|
|
|
* \param output buffer for holding the output data
|
|
|
|
*
|
|
|
|
* \return 0 if successful or POLARSSL_ERR_GCM_BAD_INPUT
|
|
|
|
*/
|
|
|
|
int gcm_update( gcm_context *ctx,
|
|
|
|
size_t length,
|
|
|
|
const unsigned char *input,
|
|
|
|
unsigned char *output );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Generic GCM finalisation function. Wraps up the GCM stream
|
2013-08-31 17:31:03 +02:00
|
|
|
* and generates the tag. The tag can have a maximum length of
|
2013-06-26 15:07:16 +02:00
|
|
|
* 16 bytes.
|
|
|
|
*
|
|
|
|
* \param ctx GCM context
|
2013-08-31 17:31:03 +02:00
|
|
|
* \param tag buffer for holding the tag (may be NULL if tag_len is 0)
|
2013-06-26 15:07:16 +02:00
|
|
|
* \param tag_len length of the tag to generate
|
|
|
|
*
|
2013-08-31 17:31:03 +02:00
|
|
|
* \return 0 if successful or POLARSSL_ERR_GCM_BAD_INPUT
|
2013-06-26 15:07:16 +02:00
|
|
|
*/
|
|
|
|
int gcm_finish( gcm_context *ctx,
|
|
|
|
unsigned char *tag,
|
|
|
|
size_t tag_len );
|
|
|
|
|
2012-03-20 14:50:09 +01:00
|
|
|
/**
|
|
|
|
* \brief Checkup routine
|
|
|
|
*
|
|
|
|
* \return 0 if successful, or 1 if the test failed
|
|
|
|
*/
|
|
|
|
int gcm_self_test( int verbose );
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* gcm.h */
|