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

  /src/sys/netinet/
sctp_hashdriver.c 80 unsigned char k_opad[65]; local in function:sctp_hash_digest
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 in function:sctp_hash_digest_m
202 memset(k_opad, 0, sizeof k_opad);
    [all...]
  /src/lib/libcrypt/
hmac.c 75 unsigned char k_opad[HMAC_BLOCKSZ]; local in function:HMAC_FUNC
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 13 milliseconds