Home
last modified time | relevance | path

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

/xnu-11215.81.4/bsd/netinet/
H A Dmptcp_subr.c5139 mptcp_key_t key_ipad[8] = {0}; /* key XOR'd with inner pad */ in mptcp_hmac_sha256() local
5146 key_ipad[0] = key1; in mptcp_hmac_sha256()
5147 key_ipad[1] = key2; in mptcp_hmac_sha256()
5157 key_ipad[i] ^= 0x3636363636363636; in mptcp_hmac_sha256()
5163 SHA256_Update(&sha_ctx, (unsigned char *)key_ipad, sizeof(key_ipad)); in mptcp_hmac_sha256()
5197 mptcp_key_t key_ipad[8] = {0}; /* key XOR'd with inner pad */ in mptcp_hmac_sha1() local
5205 key_ipad[0] = key1; in mptcp_hmac_sha1()
5206 key_ipad[1] = key2; in mptcp_hmac_sha1()
5220 key_ipad[i] ^= 0x3636363636363636; in mptcp_hmac_sha1()
5226 SHA1Update(&sha1ctxt, (unsigned char *)key_ipad, sizeof(key_ipad)); in mptcp_hmac_sha1()