OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:finalcount
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/webrtc/base/
sha1.cc
49
* 2- Fixed overwriting of
finalcount
in SHA1Final() (discovered by Chris Hall)
259
uint8
finalcount
[8];
local
262
finalcount
[i] = static_cast<uint8>(
269
SHA1Update(context,
finalcount
, 8); // Should cause a SHA1Transform().
279
memset(
finalcount
, 0, 8); // SWR
/bionic/libc/upstream-netbsd/common/lib/libc/hash/sha1/
sha1.c
268
uint8_t
finalcount
[8];
local
274
finalcount
[i] = (uint8_t)((context->count[(i >= 4 ? 0 : 1)]
280
SHA1Update(context,
finalcount
, 8); /* Should cause a SHA1Transform() */
/external/chromium_org/third_party/smhasher/src/
sha1.cpp
49
2- Fixed overwriting of
finalcount
in SHA1Final() (discovered by Chris Hall)
212
uint8_t
finalcount
[8];
local
215
finalcount
[i] = (unsigned char)((context->count[(i >= 4 ? 0 : 1)]
222
SHA1_Update(context,
finalcount
, 8); /* Should cause a SHA1_Transform() */
233
memset(
finalcount
, 0, 8); /* SWR */
/dalvik/libdex/
sha1.cpp
245
unsigned char
finalcount
[8];
local
249
finalcount
[i] = (unsigned char)((context->count[(i>=4?
257
SHA1Update(context,
finalcount
, 8);
267
memset(&
finalcount
, 0, 8);
Completed in 227 milliseconds