2016-05-18 02:51:26 +08:00
|
|
|
/*
|
2024-02-01 22:15:27 +08:00
|
|
|
* Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
|
2015-11-30 20:34:20 +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
|
2015-11-30 20:34:20 +08:00
|
|
|
*/
|
2016-05-18 02:51:26 +08:00
|
|
|
|
2019-09-28 06:45:57 +08:00
|
|
|
#ifndef OSSL_CRYPTO_HMAC_LOCAL_H
|
|
|
|
# define OSSL_CRYPTO_HMAC_LOCAL_H
|
2015-11-30 20:34:20 +08:00
|
|
|
|
2024-02-01 22:15:27 +08:00
|
|
|
# include "internal/common.h"
|
|
|
|
# include "internal/numbers.h"
|
|
|
|
# include "openssl/sha.h"
|
|
|
|
|
2018-08-16 06:54:35 +08:00
|
|
|
/* The current largest case is for SHA3-224 */
|
|
|
|
#define HMAC_MAX_MD_CBLOCK_SIZE 144
|
|
|
|
|
2015-12-08 03:49:17 +08:00
|
|
|
struct hmac_ctx_st {
|
2015-11-30 20:34:20 +08:00
|
|
|
const EVP_MD *md;
|
|
|
|
EVP_MD_CTX *md_ctx;
|
|
|
|
EVP_MD_CTX *i_ctx;
|
|
|
|
EVP_MD_CTX *o_ctx;
|
2024-02-01 22:15:27 +08:00
|
|
|
|
|
|
|
/* Platform specific data */
|
|
|
|
union {
|
|
|
|
int dummy;
|
|
|
|
# ifdef OPENSSL_HMAC_S390X
|
|
|
|
struct {
|
|
|
|
unsigned int fc; /* 0 if not supported by kmac instruction */
|
|
|
|
int blk_size;
|
|
|
|
int ikp;
|
|
|
|
int iimp;
|
|
|
|
unsigned char *buf;
|
|
|
|
size_t size; /* must be multiple of digest block size */
|
|
|
|
size_t num;
|
|
|
|
union {
|
|
|
|
OSSL_UNION_ALIGN;
|
|
|
|
struct {
|
|
|
|
uint32_t h[8];
|
|
|
|
uint64_t imbl;
|
|
|
|
unsigned char key[64];
|
|
|
|
} hmac_224_256;
|
|
|
|
struct {
|
|
|
|
uint64_t h[8];
|
|
|
|
uint128_t imbl;
|
|
|
|
unsigned char key[128];
|
|
|
|
} hmac_384_512;
|
|
|
|
} param;
|
|
|
|
} s390x;
|
|
|
|
# endif /* OPENSSL_HMAC_S390X */
|
|
|
|
} plat;
|
2015-12-08 03:49:17 +08:00
|
|
|
};
|
2015-11-30 20:34:20 +08:00
|
|
|
|
2024-02-01 22:15:27 +08:00
|
|
|
# ifdef OPENSSL_HMAC_S390X
|
|
|
|
# define HMAC_S390X_BUF_NUM_BLOCKS 64
|
|
|
|
|
|
|
|
int s390x_HMAC_init(HMAC_CTX *ctx, const void *key, int key_len, ENGINE *impl);
|
|
|
|
int s390x_HMAC_update(HMAC_CTX *ctx, const unsigned char *data, size_t len);
|
|
|
|
int s390x_HMAC_final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);
|
|
|
|
int s390x_HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx);
|
|
|
|
int s390x_HMAC_CTX_cleanup(HMAC_CTX *ctx);
|
|
|
|
# endif /* OPENSSL_HMAC_S390X */
|
|
|
|
|
2015-11-30 20:34:20 +08:00
|
|
|
#endif
|