2016-05-17 18:51:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 10:56:39 +00:00
|
|
|
*
|
2016-05-17 18:51:26 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1998-12-21 10:56:39 +00:00
|
|
|
*/
|
2011-01-26 16:15:38 +00:00
|
|
|
|
1998-12-21 10:56:39 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
2005-05-17 00:01:48 +00:00
|
|
|
#include <openssl/hmac.h>
|
2016-01-05 04:00:33 +00:00
|
|
|
#include <openssl/opensslconf.h>
|
2015-11-30 12:34:20 +00:00
|
|
|
#include "hmac_lcl.h"
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2008-11-12 03:58:08 +00:00
|
|
|
int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
|
2015-01-22 03:40:55 +00:00
|
|
|
const EVP_MD *md, ENGINE *impl)
|
|
|
|
{
|
|
|
|
int i, j, reset = 0;
|
|
|
|
unsigned char pad[HMAC_MAX_MD_CBLOCK];
|
|
|
|
|
2015-06-12 12:08:04 +00:00
|
|
|
/* If we are changing MD then we must have a key */
|
|
|
|
if (md != NULL && md != ctx->md && (key == NULL || len < 0))
|
|
|
|
return 0;
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (md != NULL) {
|
|
|
|
reset = 1;
|
|
|
|
ctx->md = md;
|
2015-04-16 05:50:03 +00:00
|
|
|
} else if (ctx->md) {
|
2015-01-22 03:40:55 +00:00
|
|
|
md = ctx->md;
|
2015-02-10 11:39:52 +00:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (key != NULL) {
|
|
|
|
reset = 1;
|
2015-11-27 13:10:15 +00:00
|
|
|
j = EVP_MD_block_size(md);
|
2015-01-22 03:40:55 +00:00
|
|
|
OPENSSL_assert(j <= (int)sizeof(ctx->key));
|
|
|
|
if (j < len) {
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestInit_ex(ctx->md_ctx, md, impl))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestUpdate(ctx->md_ctx, key, len))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestFinal_ex(ctx->md_ctx, ctx->key,
|
2015-01-22 03:40:55 +00:00
|
|
|
&ctx->key_length))
|
|
|
|
goto err;
|
|
|
|
} else {
|
2015-04-16 05:50:03 +00:00
|
|
|
if (len < 0 || len > (int)sizeof(ctx->key))
|
2015-02-10 13:15:25 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
memcpy(ctx->key, key, len);
|
|
|
|
ctx->key_length = len;
|
|
|
|
}
|
|
|
|
if (ctx->key_length != HMAC_MAX_MD_CBLOCK)
|
|
|
|
memset(&ctx->key[ctx->key_length], 0,
|
|
|
|
HMAC_MAX_MD_CBLOCK - ctx->key_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reset) {
|
|
|
|
for (i = 0; i < HMAC_MAX_MD_CBLOCK; i++)
|
|
|
|
pad[i] = 0x36 ^ ctx->key[i];
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestInit_ex(ctx->i_ctx, md, impl))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestUpdate(ctx->i_ctx, pad, EVP_MD_block_size(md)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
for (i = 0; i < HMAC_MAX_MD_CBLOCK; i++)
|
|
|
|
pad[i] = 0x5c ^ ctx->key[i];
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestInit_ex(ctx->o_ctx, md, impl))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestUpdate(ctx->o_ctx, pad, EVP_MD_block_size(md)))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_MD_CTX_copy_ex(ctx->md_ctx, ctx->i_ctx))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
|
|
|
return 1;
|
|
|
|
err:
|
|
|
|
return 0;
|
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2016-01-05 04:00:33 +00:00
|
|
|
#if OPENSSL_API_COMPAT < 0x10100000L
|
2008-11-12 03:58:08 +00:00
|
|
|
int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (key && md)
|
2015-12-02 21:49:24 +00:00
|
|
|
HMAC_CTX_reset(ctx);
|
2015-01-22 03:40:55 +00:00
|
|
|
return HMAC_Init_ex(ctx, key, len, md, NULL);
|
|
|
|
}
|
2015-02-10 09:45:18 +00:00
|
|
|
#endif
|
2001-12-09 21:53:31 +00:00
|
|
|
|
2008-11-02 16:00:39 +00:00
|
|
|
int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2015-06-12 12:08:04 +00:00
|
|
|
if (!ctx->md)
|
2015-02-10 11:39:52 +00:00
|
|
|
return 0;
|
2015-11-27 13:10:15 +00:00
|
|
|
return EVP_DigestUpdate(ctx->md_ctx, data, len);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2008-11-02 16:00:39 +00:00
|
|
|
int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
unsigned char buf[EVP_MAX_MD_SIZE];
|
|
|
|
|
2015-06-12 12:08:04 +00:00
|
|
|
if (!ctx->md)
|
2015-02-10 11:39:52 +00:00
|
|
|
goto err;
|
|
|
|
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestFinal_ex(ctx->md_ctx, buf, &i))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_MD_CTX_copy_ex(ctx->md_ctx, ctx->o_ctx))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestUpdate(ctx->md_ctx, buf, i))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_DigestFinal_ex(ctx->md_ctx, md, len))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
|
|
|
return 1;
|
|
|
|
err:
|
|
|
|
return 0;
|
|
|
|
}
|
2001-07-30 23:57:25 +00:00
|
|
|
|
2016-05-14 09:02:46 +00:00
|
|
|
size_t HMAC_size(const HMAC_CTX *ctx)
|
2015-11-30 12:34:20 +00:00
|
|
|
{
|
|
|
|
return EVP_MD_size((ctx)->md);
|
|
|
|
}
|
|
|
|
|
|
|
|
HMAC_CTX *HMAC_CTX_new(void)
|
|
|
|
{
|
2016-02-08 15:11:56 +00:00
|
|
|
HMAC_CTX *ctx = OPENSSL_zalloc(sizeof(HMAC_CTX));
|
|
|
|
|
|
|
|
if (ctx != NULL) {
|
2015-12-02 21:47:31 +00:00
|
|
|
if (!HMAC_CTX_reset(ctx)) {
|
2015-11-30 12:34:20 +00:00
|
|
|
HMAC_CTX_free(ctx);
|
2016-02-08 15:11:56 +00:00
|
|
|
return NULL;
|
2015-11-30 12:34:20 +00:00
|
|
|
}
|
2016-02-08 15:11:56 +00:00
|
|
|
}
|
2015-11-30 12:34:20 +00:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
2015-11-30 22:42:39 +00:00
|
|
|
static void hmac_ctx_cleanup(HMAC_CTX *ctx)
|
|
|
|
{
|
2015-12-01 23:49:35 +00:00
|
|
|
EVP_MD_CTX_reset(ctx->i_ctx);
|
|
|
|
EVP_MD_CTX_reset(ctx->o_ctx);
|
|
|
|
EVP_MD_CTX_reset(ctx->md_ctx);
|
2015-11-30 22:42:39 +00:00
|
|
|
ctx->md = NULL;
|
|
|
|
ctx->key_length = 0;
|
|
|
|
memset(ctx->key, 0, sizeof(HMAC_MAX_MD_CBLOCK));
|
|
|
|
}
|
|
|
|
|
2015-11-30 12:34:20 +00:00
|
|
|
void HMAC_CTX_free(HMAC_CTX *ctx)
|
|
|
|
{
|
|
|
|
if (ctx != NULL) {
|
2015-11-30 22:42:39 +00:00
|
|
|
hmac_ctx_cleanup(ctx);
|
2015-12-01 23:49:35 +00:00
|
|
|
EVP_MD_CTX_free(ctx->i_ctx);
|
|
|
|
EVP_MD_CTX_free(ctx->o_ctx);
|
|
|
|
EVP_MD_CTX_free(ctx->md_ctx);
|
2015-11-30 12:34:20 +00:00
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-02 21:47:31 +00:00
|
|
|
int HMAC_CTX_reset(HMAC_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2015-11-30 22:42:39 +00:00
|
|
|
hmac_ctx_cleanup(ctx);
|
2015-11-27 13:10:15 +00:00
|
|
|
if (ctx->i_ctx == NULL)
|
2015-12-01 23:49:35 +00:00
|
|
|
ctx->i_ctx = EVP_MD_CTX_new();
|
2015-11-27 13:10:15 +00:00
|
|
|
if (ctx->i_ctx == NULL)
|
|
|
|
goto err;
|
|
|
|
if (ctx->o_ctx == NULL)
|
2015-12-01 23:49:35 +00:00
|
|
|
ctx->o_ctx = EVP_MD_CTX_new();
|
2015-11-27 13:10:15 +00:00
|
|
|
if (ctx->o_ctx == NULL)
|
|
|
|
goto err;
|
|
|
|
if (ctx->md_ctx == NULL)
|
2015-12-01 23:49:35 +00:00
|
|
|
ctx->md_ctx = EVP_MD_CTX_new();
|
2015-11-27 13:10:15 +00:00
|
|
|
if (ctx->md_ctx == NULL)
|
|
|
|
goto err;
|
2015-02-10 11:39:52 +00:00
|
|
|
ctx->md = NULL;
|
2015-11-27 13:10:15 +00:00
|
|
|
return 1;
|
|
|
|
err:
|
2015-11-30 22:42:39 +00:00
|
|
|
hmac_ctx_cleanup(ctx);
|
2015-11-27 13:10:15 +00:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2008-11-02 16:00:39 +00:00
|
|
|
int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2015-12-02 21:49:24 +00:00
|
|
|
if (!HMAC_CTX_reset(dctx))
|
2015-11-27 13:10:15 +00:00
|
|
|
goto err;
|
|
|
|
if (!EVP_MD_CTX_copy_ex(dctx->i_ctx, sctx->i_ctx))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_MD_CTX_copy_ex(dctx->o_ctx, sctx->o_ctx))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-27 13:10:15 +00:00
|
|
|
if (!EVP_MD_CTX_copy_ex(dctx->md_ctx, sctx->md_ctx))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-06-12 12:08:04 +00:00
|
|
|
memcpy(dctx->key, sctx->key, HMAC_MAX_MD_CBLOCK);
|
|
|
|
dctx->key_length = sctx->key_length;
|
2015-01-22 03:40:55 +00:00
|
|
|
dctx->md = sctx->md;
|
|
|
|
return 1;
|
|
|
|
err:
|
2015-11-30 22:42:39 +00:00
|
|
|
hmac_ctx_cleanup(dctx);
|
2015-01-22 03:40:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2007-04-11 12:33:06 +00:00
|
|
|
|
2008-11-12 03:58:08 +00:00
|
|
|
unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
|
2015-01-22 03:40:55 +00:00
|
|
|
const unsigned char *d, size_t n, unsigned char *md,
|
|
|
|
unsigned int *md_len)
|
|
|
|
{
|
2015-11-30 12:34:20 +00:00
|
|
|
HMAC_CTX *c = NULL;
|
2015-01-22 03:40:55 +00:00
|
|
|
static unsigned char m[EVP_MAX_MD_SIZE];
|
2015-09-10 13:17:58 +00:00
|
|
|
static const unsigned char dummy_key[1] = {'\0'};
|
2015-01-22 03:40:55 +00:00
|
|
|
|
|
|
|
if (md == NULL)
|
|
|
|
md = m;
|
2015-11-30 12:34:20 +00:00
|
|
|
if ((c = HMAC_CTX_new()) == NULL)
|
|
|
|
goto err;
|
2015-09-10 13:17:58 +00:00
|
|
|
|
|
|
|
/* For HMAC_Init_ex, NULL key signals reuse. */
|
|
|
|
if (key == NULL && key_len == 0) {
|
|
|
|
key = dummy_key;
|
|
|
|
}
|
|
|
|
|
2015-11-30 12:34:20 +00:00
|
|
|
if (!HMAC_Init_ex(c, key, key_len, evp_md, NULL))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-30 12:34:20 +00:00
|
|
|
if (!HMAC_Update(c, d, n))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-30 12:34:20 +00:00
|
|
|
if (!HMAC_Final(c, md, md_len))
|
2015-01-22 03:40:55 +00:00
|
|
|
goto err;
|
2015-11-30 12:34:20 +00:00
|
|
|
HMAC_CTX_free(c);
|
2015-01-22 03:40:55 +00:00
|
|
|
return md;
|
|
|
|
err:
|
2015-11-30 12:34:20 +00:00
|
|
|
HMAC_CTX_free(c);
|
2015-01-22 03:40:55 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2010-01-26 14:29:06 +00:00
|
|
|
void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2015-11-27 13:10:15 +00:00
|
|
|
EVP_MD_CTX_set_flags(ctx->i_ctx, flags);
|
|
|
|
EVP_MD_CTX_set_flags(ctx->o_ctx, flags);
|
|
|
|
EVP_MD_CTX_set_flags(ctx->md_ctx, flags);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|