Searched refs:hash_context (Results 1 - 2 of 2) sorted by relevance
| /PHP_TRUNK/ext/interbase/ |
| H A D | interbase.c | 900 PHP_MD5_CTX hash_context; local 933 PHP_MD5Init(&hash_context); 935 PHP_MD5Update(&hash_context,args[i],len[i]); 938 PHP_MD5Update(&hash_context,(char*)&largs[i],sizeof(long)); 940 PHP_MD5Final(hash, &hash_context);
|
| /PHP_TRUNK/ext/session/ |
| H A D | session.c | 284 void *hash_context; local 326 hash_context = emalloc(PS(hash_ops)->context_size); 327 PS(hash_ops)->hash_init(hash_context); 328 PS(hash_ops)->hash_update(hash_context, (unsigned char *) buf, strlen(buf)); 355 PS(hash_ops)->hash_update(hash_context, rbuf, toread); 382 PS(hash_ops)->hash_update(hash_context, rbuf, n); 403 PS(hash_ops)->hash_final(digest, hash_context); 404 efree(hash_context);
|
Completed in 8 milliseconds