Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/tcpdump/
Dsignature.c57 unsigned char k_opad[65]; /* outer padding - key XORd with opad */ in signature_compute_hmac_md5() local
87 memset(k_opad, 0, sizeof k_opad); in signature_compute_hmac_md5()
89 memcpy(k_opad, key, key_len); in signature_compute_hmac_md5()
94 k_opad[i] ^= 0x5c; in signature_compute_hmac_md5()
109 MD5_Update(&context, k_opad, 64); /* start with outer pad */ in signature_compute_hmac_md5()
/freebsd-10-stable/sys/geom/eli/
Dg_eli_crypto.c262 ctx->k_opad[i] = key[i] ^ 0x5c; in g_eli_crypto_hmac_init()
288 SHA512_Update(&lctx, ctx->k_opad, sizeof(ctx->k_opad)); in g_eli_crypto_hmac_final()
Dg_eli.h610 u_char k_opad[128]; member