Home | History | Annotate | Download | only in crypto

Lines Matching refs:hash_size

138   DWORD hash_size = 0;
141 hash_size = 20;
144 hash_size = 32;
147 hash_size = 48;
150 hash_size = 64;
153 if (hash_size == 0)
158 return (key_size_in_bits >= (hash_size / 2 * 8) &&
239 DWORD hash_size,
271 std::vector<BYTE> hash_value(hash_size);
273 DWORD size = hash_size;
275 if (!ok || size != hash_size)
278 memcpy(output_buf, &hash_value[0], hash_size);
289 ok = CryptHashData(safe_hash, &hash_value[0], hash_size, 0);
293 size = hash_size;
295 if (!ok || size != hash_size)
298 for (int i = 0; i < hash_size; ++i)