/src/sys/netinet/ |
sctp_hashdriver.c | 78 unsigned char k_ipad[65]; local in function:sctp_hash_digest 114 memset(k_ipad, 0, sizeof k_ipad); 116 bcopy(key, k_ipad, key_len); 121 k_ipad[i] ^= 0x36; 129 MD5Update(&context, k_ipad, 64); /* start with inner pad */ 134 SHA1Update(&context, k_ipad, 64); /* start with inner pad */ 165 unsigned char k_ipad[65]; local in function:sctp_hash_digest_m 201 memset(k_ipad, 0, sizeof k_ipad); [all...] |
sctp_hashdriver.c | 78 unsigned char k_ipad[65]; local in function:sctp_hash_digest 114 memset(k_ipad, 0, sizeof k_ipad); 116 bcopy(key, k_ipad, key_len); 121 k_ipad[i] ^= 0x36; 129 MD5Update(&context, k_ipad, 64); /* start with inner pad */ 134 SHA1Update(&context, k_ipad, 64); /* start with inner pad */ 165 unsigned char k_ipad[65]; local in function:sctp_hash_digest_m 201 memset(k_ipad, 0, sizeof k_ipad); [all...] |
/src/lib/libcrypt/ |
hmac.c | 73 unsigned char k_ipad[HMAC_BLOCKSZ]; local in function:HMAC_FUNC 109 memset( k_ipad, HMAC_IPAD, sizeof k_ipad); 112 k_ipad[i] ^= key[i]; 122 HASH_Update(&context, k_ipad, HMAC_BLOCKSZ);
|
hmac.c | 73 unsigned char k_ipad[HMAC_BLOCKSZ]; local in function:HMAC_FUNC 109 memset( k_ipad, HMAC_IPAD, sizeof k_ipad); 112 k_ipad[i] ^= key[i]; 122 HASH_Update(&context, k_ipad, HMAC_BLOCKSZ);
|