Searched refs:k_opad (Results 1 – 3 of 3) sorted by relevance
57 unsigned char k_opad[65]; /* outer padding - key XORd with opad */ in signature_compute_hmac_md5() local87 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()
262 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()
610 u_char k_opad[128]; member