Home
last modified time | relevance | path

Searched refs:hmacctx (Results 1 – 3 of 3) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/
H A D0001-Forward-port-to-OpenSSL-1.1.x.patch205 - hmacctx = new HMAC_CTX;
206 + hmacctx = HMAC_CTX_new();
213 - delete hmacctx;
214 + HMAC_CTX_free(hmacctx);
222 - HMAC_Init(hmacctx, key, keysize, (env_md_st *)digest->getevpmd());
223 + HMAC_Init(hmacctx, key, keysize, digest->getevpmd());
532 - hmac_ctx_st *hmacctx;
533 + HMAC_CTX *hmacctx;
/openbmc/linux/drivers/crypto/chelsio/
H A Dchcr_algo.c111 return &ctx->crypto_ctx->hmacctx; in HMAC_CTX()
1566 struct hmac_ctx *hmacctx = HMAC_CTX(ctx); in create_hash_wr() local
1618 hmacctx->opad, param->alg_prm.result_size); in create_hash_wr()
2197 struct hmac_ctx *hmacctx = HMAC_CTX(h_ctx(tfm)); in chcr_ahash_setkey() local
2202 SHASH_DESC_ON_STACK(shash, hmacctx->base_hash); in chcr_ahash_setkey()
2208 shash->tfm = hmacctx->base_hash; in chcr_ahash_setkey()
2211 hmacctx->ipad); in chcr_ahash_setkey()
2216 memcpy(hmacctx->ipad, key, keylen); in chcr_ahash_setkey()
2218 memset(hmacctx->ipad + keylen, 0, bs - keylen); in chcr_ahash_setkey()
2219 unsafe_memcpy(hmacctx->opad, hmacctx->ipad, bs, in chcr_ahash_setkey()
[all …]
H A Dchcr_crypto.h251 struct hmac_ctx hmacctx; member