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

/netbsd-current/sys/netinet/
H A Dsctp_hashdriver.c80 unsigned char k_opad[65]; local
115 memset(k_opad, 0, sizeof k_opad);
117 bcopy(key, k_opad, key_len);
122 k_opad[i] ^= 0x5c;
144 MD5Update(&context, k_opad, 64); /* start with outer pad */
149 SHA1Update(&context, k_opad, 64); /* start with outer pad */
167 unsigned char k_opad[65]; local
202 memset(k_opad, 0, sizeof k_opad);
[all...]
/netbsd-current/external/bsd/tcpdump/dist/
H A Dsignature.c61 unsigned char k_opad[65]; /* outer padding - key XORd with opad */ local
91 memset(k_opad, 0, sizeof(k_opad));
93 memcpy(k_opad, key, key_len);
98 k_opad[i] ^= 0x5c;
113 MD5_Update(&context, k_opad, 64); /* start with outer pad */
/netbsd-current/lib/libcrypt/
H A Dhmac.c75 unsigned char k_opad[HMAC_BLOCKSZ]; local
110 memset( k_opad, HMAC_OPAD, sizeof k_opad);
113 k_opad[i] ^= key[i];
132 HASH_Update(&context, k_opad, HMAC_BLOCKSZ);

Completed in 80 milliseconds