Lines Matching refs:temp
99 + unsigned char temp[64]; // Temporary hash buffer
130 + gnutls_hash_fast(alg, a, alen, temp);
131 + memcpy(hash, temp, tempsize);
219 + unsigned char temp[CC_SHA512_DIGEST_LENGTH];
229 + CC_SHA512_Final(temp, &ctx);
231 + memcpy(hash, temp, CC_SHA224_DIGEST_LENGTH);
239 + unsigned char temp[CC_SHA512_DIGEST_LENGTH];
249 + CC_SHA512_Final(temp, &ctx);
251 + memcpy(hash, temp, CC_SHA256_DIGEST_LENGTH);
262 + unsigned char temp[64]; // Temporary hash buffer
317 + status = BCryptHash(alg, NULL, 0, (PUCHAR)a, (ULONG)alen, temp, sizeof(temp));
318 + memcpy(hash, temp, hashlen);