2016-05-18 02:51:26 +08:00
|
|
|
/*
|
2021-05-20 21:22:33 +08:00
|
|
|
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 18:56:39 +08:00
|
|
|
*
|
2018-12-06 20:41:14 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:26 +08:00
|
|
|
* 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 18:56:39 +08:00
|
|
|
*/
|
2011-01-27 00:15:38 +08:00
|
|
|
|
2020-01-14 10:11:50 +08:00
|
|
|
/*
|
|
|
|
* HMAC low level APIs are deprecated for public use, but still ok for internal
|
|
|
|
* use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
1998-12-21 18:56:39 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2016-01-05 12:00:33 +08:00
|
|
|
#include <openssl/opensslconf.h>
|
2021-03-30 01:42:33 +08:00
|
|
|
#include <openssl/hmac.h>
|
|
|
|
#include <openssl/core_names.h>
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "hmac_local.h"
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2008-11-12 11:58:08 +08:00
|
|
|
int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
|
2015-01-22 11:40:55 +08:00
|
|
|
const EVP_MD *md, ENGINE *impl)
|
|
|
|
{
|
2020-01-03 17:37:19 +08:00
|
|
|
int rv = 0, reset = 0;
|
|
|
|
int i, j;
|
2018-08-16 06:54:35 +08:00
|
|
|
unsigned char pad[HMAC_MAX_MD_CBLOCK_SIZE];
|
2020-01-03 17:37:19 +08:00
|
|
|
unsigned int keytmp_length;
|
|
|
|
unsigned char keytmp[HMAC_MAX_MD_CBLOCK_SIZE];
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2015-06-12 20:08:04 +08:00
|
|
|
/* If we are changing MD then we must have a key */
|
|
|
|
if (md != NULL && md != ctx->md && (key == NULL || len < 0))
|
|
|
|
return 0;
|
|
|
|
|
2021-03-30 01:42:33 +08:00
|
|
|
if (md != NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
ctx->md = md;
|
2021-03-30 01:42:33 +08:00
|
|
|
else if (ctx->md != NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
md = ctx->md;
|
2021-03-30 01:42:33 +08:00
|
|
|
else
|
2015-02-10 19:39:52 +08:00
|
|
|
return 0;
|
|
|
|
|
2019-03-26 21:32:39 +08:00
|
|
|
/*
|
|
|
|
* The HMAC construction is not allowed to be used with the
|
|
|
|
* extendable-output functions (XOF) shake128 and shake256.
|
|
|
|
*/
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
if ((EVP_MD_get_flags(md) & EVP_MD_FLAG_XOF) != 0)
|
2019-03-26 21:32:39 +08:00
|
|
|
return 0;
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (key != NULL) {
|
|
|
|
reset = 1;
|
2020-01-03 17:37:19 +08:00
|
|
|
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
j = EVP_MD_get_block_size(md);
|
2020-01-03 17:37:19 +08:00
|
|
|
if (!ossl_assert(j <= (int)sizeof(keytmp)))
|
2018-09-03 12:15:13 +08:00
|
|
|
return 0;
|
2020-04-27 07:28:55 +08:00
|
|
|
if (j < 0)
|
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (j < len) {
|
2018-09-03 12:15:13 +08:00
|
|
|
if (!EVP_DigestInit_ex(ctx->md_ctx, md, impl)
|
|
|
|
|| !EVP_DigestUpdate(ctx->md_ctx, key, len)
|
2020-01-03 17:37:19 +08:00
|
|
|
|| !EVP_DigestFinal_ex(ctx->md_ctx, keytmp,
|
|
|
|
&keytmp_length))
|
2018-09-03 12:15:13 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
} else {
|
2020-01-03 17:37:19 +08:00
|
|
|
if (len < 0 || len > (int)sizeof(keytmp))
|
2015-02-10 21:15:25 +08:00
|
|
|
return 0;
|
2020-01-03 17:37:19 +08:00
|
|
|
memcpy(keytmp, key, len);
|
|
|
|
keytmp_length = len;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2020-01-03 17:37:19 +08:00
|
|
|
if (keytmp_length != HMAC_MAX_MD_CBLOCK_SIZE)
|
|
|
|
memset(&keytmp[keytmp_length], 0,
|
|
|
|
HMAC_MAX_MD_CBLOCK_SIZE - keytmp_length);
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2018-08-16 06:54:35 +08:00
|
|
|
for (i = 0; i < HMAC_MAX_MD_CBLOCK_SIZE; i++)
|
2020-01-03 17:37:19 +08:00
|
|
|
pad[i] = 0x36 ^ keytmp[i];
|
2018-09-03 12:15:13 +08:00
|
|
|
if (!EVP_DigestInit_ex(ctx->i_ctx, md, impl)
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
|| !EVP_DigestUpdate(ctx->i_ctx, pad,
|
|
|
|
EVP_MD_get_block_size(md)))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
|
2018-08-16 06:54:35 +08:00
|
|
|
for (i = 0; i < HMAC_MAX_MD_CBLOCK_SIZE; i++)
|
2020-01-03 17:37:19 +08:00
|
|
|
pad[i] = 0x5c ^ keytmp[i];
|
2018-09-03 12:15:13 +08:00
|
|
|
if (!EVP_DigestInit_ex(ctx->o_ctx, md, impl)
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
|| !EVP_DigestUpdate(ctx->o_ctx, pad,
|
|
|
|
EVP_MD_get_block_size(md)))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2015-11-27 21:10:15 +08:00
|
|
|
if (!EVP_MD_CTX_copy_ex(ctx->md_ctx, ctx->i_ctx))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
2018-09-03 12:15:13 +08:00
|
|
|
rv = 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
err:
|
2020-01-03 17:37:19 +08:00
|
|
|
if (reset) {
|
|
|
|
OPENSSL_cleanse(keytmp, sizeof(keytmp));
|
2018-09-03 12:15:13 +08:00
|
|
|
OPENSSL_cleanse(pad, sizeof(pad));
|
2020-01-03 17:37:19 +08:00
|
|
|
}
|
2018-09-03 12:15:13 +08:00
|
|
|
return rv;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2019-11-06 00:34:09 +08:00
|
|
|
#ifndef OPENSSL_NO_DEPRECATED_1_1_0
|
2008-11-12 11:58:08 +08:00
|
|
|
int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
if (key && md)
|
2015-12-03 05:49:24 +08:00
|
|
|
HMAC_CTX_reset(ctx);
|
2015-01-22 11:40:55 +08:00
|
|
|
return HMAC_Init_ex(ctx, key, len, md, NULL);
|
|
|
|
}
|
2015-02-10 17:45:18 +08:00
|
|
|
#endif
|
2001-12-10 05:53:31 +08:00
|
|
|
|
2008-11-03 00:00:39 +08:00
|
|
|
int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2015-06-12 20:08:04 +08:00
|
|
|
if (!ctx->md)
|
2015-02-10 19:39:52 +08:00
|
|
|
return 0;
|
2015-11-27 21:10:15 +08:00
|
|
|
return EVP_DigestUpdate(ctx->md_ctx, data, len);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2008-11-03 00:00:39 +08:00
|
|
|
int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
unsigned char buf[EVP_MAX_MD_SIZE];
|
|
|
|
|
2015-06-12 20:08:04 +08:00
|
|
|
if (!ctx->md)
|
2015-02-10 19:39:52 +08:00
|
|
|
goto err;
|
|
|
|
|
2015-11-27 21:10:15 +08:00
|
|
|
if (!EVP_DigestFinal_ex(ctx->md_ctx, buf, &i))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
2015-11-27 21:10:15 +08:00
|
|
|
if (!EVP_MD_CTX_copy_ex(ctx->md_ctx, ctx->o_ctx))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
2015-11-27 21:10:15 +08:00
|
|
|
if (!EVP_DigestUpdate(ctx->md_ctx, buf, i))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
2015-11-27 21:10:15 +08:00
|
|
|
if (!EVP_DigestFinal_ex(ctx->md_ctx, md, len))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
return 1;
|
|
|
|
err:
|
|
|
|
return 0;
|
|
|
|
}
|
2001-07-31 07:57:25 +08:00
|
|
|
|
2016-05-14 17:02:46 +08:00
|
|
|
size_t HMAC_size(const HMAC_CTX *ctx)
|
2015-11-30 20:34:20 +08:00
|
|
|
{
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
int size = EVP_MD_get_size((ctx)->md);
|
2016-10-21 22:41:04 +08:00
|
|
|
|
|
|
|
return (size < 0) ? 0 : size;
|
2015-11-30 20:34:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
HMAC_CTX *HMAC_CTX_new(void)
|
|
|
|
{
|
2016-02-08 23:11:56 +08:00
|
|
|
HMAC_CTX *ctx = OPENSSL_zalloc(sizeof(HMAC_CTX));
|
|
|
|
|
|
|
|
if (ctx != NULL) {
|
2015-12-03 05:47:31 +08:00
|
|
|
if (!HMAC_CTX_reset(ctx)) {
|
2015-11-30 20:34:20 +08:00
|
|
|
HMAC_CTX_free(ctx);
|
2016-02-08 23:11:56 +08:00
|
|
|
return NULL;
|
2015-11-30 20:34:20 +08:00
|
|
|
}
|
2016-02-08 23:11:56 +08:00
|
|
|
}
|
2015-11-30 20:34:20 +08:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
2015-12-01 06:42:39 +08:00
|
|
|
static void hmac_ctx_cleanup(HMAC_CTX *ctx)
|
|
|
|
{
|
2015-12-02 07:49:35 +08:00
|
|
|
EVP_MD_CTX_reset(ctx->i_ctx);
|
|
|
|
EVP_MD_CTX_reset(ctx->o_ctx);
|
|
|
|
EVP_MD_CTX_reset(ctx->md_ctx);
|
2015-12-01 06:42:39 +08:00
|
|
|
ctx->md = NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-30 20:34:20 +08:00
|
|
|
void HMAC_CTX_free(HMAC_CTX *ctx)
|
|
|
|
{
|
|
|
|
if (ctx != NULL) {
|
2015-12-01 06:42:39 +08:00
|
|
|
hmac_ctx_cleanup(ctx);
|
2015-12-02 07:49:35 +08: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 20:34:20 +08:00
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-14 00:50:31 +08:00
|
|
|
static int hmac_ctx_alloc_mds(HMAC_CTX *ctx)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2015-11-27 21:10:15 +08:00
|
|
|
if (ctx->i_ctx == NULL)
|
2015-12-02 07:49:35 +08:00
|
|
|
ctx->i_ctx = EVP_MD_CTX_new();
|
2015-11-27 21:10:15 +08:00
|
|
|
if (ctx->i_ctx == NULL)
|
2016-10-14 00:50:31 +08:00
|
|
|
return 0;
|
2015-11-27 21:10:15 +08:00
|
|
|
if (ctx->o_ctx == NULL)
|
2015-12-02 07:49:35 +08:00
|
|
|
ctx->o_ctx = EVP_MD_CTX_new();
|
2015-11-27 21:10:15 +08:00
|
|
|
if (ctx->o_ctx == NULL)
|
2016-10-14 00:50:31 +08:00
|
|
|
return 0;
|
2015-11-27 21:10:15 +08:00
|
|
|
if (ctx->md_ctx == NULL)
|
2015-12-02 07:49:35 +08:00
|
|
|
ctx->md_ctx = EVP_MD_CTX_new();
|
2015-11-27 21:10:15 +08:00
|
|
|
if (ctx->md_ctx == NULL)
|
2016-10-14 00:50:31 +08:00
|
|
|
return 0;
|
2015-11-27 21:10:15 +08:00
|
|
|
return 1;
|
2016-10-14 00:50:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int HMAC_CTX_reset(HMAC_CTX *ctx)
|
|
|
|
{
|
2015-12-01 06:42:39 +08:00
|
|
|
hmac_ctx_cleanup(ctx);
|
2016-10-14 00:50:31 +08:00
|
|
|
if (!hmac_ctx_alloc_mds(ctx)) {
|
|
|
|
hmac_ctx_cleanup(ctx);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2008-11-03 00:00:39 +08:00
|
|
|
int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2016-10-14 00:50:31 +08:00
|
|
|
if (!hmac_ctx_alloc_mds(dctx))
|
2015-11-27 21:10:15 +08:00
|
|
|
goto err;
|
|
|
|
if (!EVP_MD_CTX_copy_ex(dctx->i_ctx, sctx->i_ctx))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
2015-11-27 21:10:15 +08:00
|
|
|
if (!EVP_MD_CTX_copy_ex(dctx->o_ctx, sctx->o_ctx))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
2015-11-27 21:10:15 +08:00
|
|
|
if (!EVP_MD_CTX_copy_ex(dctx->md_ctx, sctx->md_ctx))
|
2015-01-22 11:40:55 +08:00
|
|
|
goto err;
|
|
|
|
dctx->md = sctx->md;
|
|
|
|
return 1;
|
|
|
|
err:
|
2015-12-01 06:42:39 +08:00
|
|
|
hmac_ctx_cleanup(dctx);
|
2015-01-22 11:40:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2007-04-11 20:33:06 +08:00
|
|
|
|
2008-11-12 11:58:08 +08:00
|
|
|
unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
|
2021-03-30 01:42:33 +08:00
|
|
|
const unsigned char *data, size_t data_len,
|
|
|
|
unsigned char *md, unsigned int *md_len)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2021-03-30 01:42:33 +08:00
|
|
|
static unsigned char static_md[EVP_MAX_MD_SIZE];
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
int size = EVP_MD_get_size(evp_md);
|
2015-01-22 11:40:55 +08:00
|
|
|
|
2021-05-17 07:45:33 +08:00
|
|
|
if (size < 0)
|
|
|
|
return NULL;
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
return EVP_Q_mac(NULL, "HMAC", NULL, EVP_MD_get0_name(evp_md), NULL,
|
2021-03-30 01:42:33 +08:00
|
|
|
key, key_len, data, data_len,
|
2021-05-17 07:45:33 +08:00
|
|
|
md == NULL ? static_md : md, size, md_len);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:56:39 +08:00
|
|
|
|
2010-01-26 22:29:06 +08:00
|
|
|
void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2015-11-27 21:10:15 +08: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 11:40:55 +08:00
|
|
|
}
|
2016-06-20 16:08:10 +08:00
|
|
|
|
|
|
|
const EVP_MD *HMAC_CTX_get_md(const HMAC_CTX *ctx)
|
|
|
|
{
|
|
|
|
return ctx->md;
|
|
|
|
}
|