HomeSort by: relevance | last modified time | path
    Searched defs:k_opad (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/netinet/
sctp_hashdriver.c 80 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...]
  /src/external/bsd/tcpdump/dist/
signature.c 59 unsigned char k_opad[65]; /* outer padding - key XORd with opad */ local
89 memset(k_opad, 0, sizeof(k_opad));
91 memcpy(k_opad, key, key_len);
96 k_opad[i] ^= 0x5c;
111 MD5_Update(&context, k_opad, 64); /* start with outer pad */
  /src/lib/libcrypt/
hmac.c 75 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 48 milliseconds