Searched refs:ihash (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_auth/hmacsha256/
H A Dauth_hmacsha256.c84 unsigned char ihash[32]; local
86 crypto_hash_sha256_final(&state->ictx, ihash);
87 crypto_hash_sha256_update(&state->octx, ihash, 32);
90 sodium_memzero((void *) ihash, sizeof ihash);
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_auth/hmacsha512/
H A Dauth_hmacsha512.c84 unsigned char ihash[64]; local
86 crypto_hash_sha512_final(&state->ictx, ihash);
87 crypto_hash_sha512_update(&state->octx, ihash, 64);
90 sodium_memzero((void *) ihash, sizeof ihash);
/freebsd-13-stable/crypto/openssl/crypto/ct/
H A Dct_vfy.c49 if (sct->entry_type == CT_LOG_ENTRY_TYPE_PRECERT && sctx->ihash == NULL)
65 if (!EVP_DigestUpdate(ctx, sctx->ihash, sctx->ihashlen))
103 (sct->entry_type == CT_LOG_ENTRY_TYPE_PRECERT && sctx->ihash == NULL)) {
H A Dct_local.h93 unsigned char *ihash; member in struct:sct_ctx_st
H A Dct_sct_ctx.c39 OPENSSL_free(sctx->ihash);
240 return ct_public_key_hash(pubkey, &sctx->ihash, &sctx->ihashlen);
/freebsd-13-stable/sys/dev/ffec/
H A Dif_ffec.c996 uint64_t ghash, ihash; local
1022 ihash = 0xffffffffffffffffLLU;
1024 ihash = 0;
1026 WR4(sc, FEC_IAUR_REG, (uint32_t)(ihash >> 32));
1027 WR4(sc, FEC_IALR_REG, (uint32_t)ihash);
/freebsd-13-stable/sys/crypto/ccp/
H A Dccp_hardware.c1207 char ihash[SHA2_512_HASH_LEN /* max hash len */]; local
1223 ccp_sha_copy_result(ihash, s->hmac.res, s->hmac.auth_mode);
1226 (u_char *)ihash, " ");
1228 axf->Update(&auth_ctx, ihash, axf->hashsize);
1233 ihash);
1234 if (timingsafe_bcmp(s->hmac.res, ihash, s->hmac.hash_len) != 0)

Completed in 132 milliseconds