OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Message_Block_Index
(Results
1 - 4
of
4
) sorted by null
/external/libvncserver/common/
sha1.c
96
context->
Message_Block_Index
= 0;
211
context->Message_Block[context->
Message_Block_Index
++] =
225
if (context->
Message_Block_Index
== 64)
339
context->
Message_Block_Index
= 0;
374
if (context->
Message_Block_Index
> 55)
376
context->Message_Block[context->
Message_Block_Index
++] = 0x80;
377
while(context->
Message_Block_Index
< 64)
379
context->Message_Block[context->
Message_Block_Index
++] = 0;
384
while(context->
Message_Block_Index
< 56)
386
context->Message_Block[context->
Message_Block_Index
++] = 0
[
all
...]
sha1.h
84
int_least16_t
Message_Block_Index
;
/external/syslinux/gpxe/src/crypto/axtls/
sha1.c
44
ctx->
Message_Block_Index
= 0;
59
ctx->Message_Block[ctx->
Message_Block_Index
++] = (*msg & 0xFF);
67
if (ctx->
Message_Block_Index
== 64)
180
ctx->
Message_Block_Index
= 0;
203
if (ctx->
Message_Block_Index
> 55)
205
ctx->Message_Block[ctx->
Message_Block_Index
++] = 0x80;
206
while(ctx->
Message_Block_Index
< 64)
208
ctx->Message_Block[ctx->
Message_Block_Index
++] = 0;
213
while (ctx->
Message_Block_Index
< 56)
215
ctx->Message_Block[ctx->
Message_Block_Index
++] = 0
[
all
...]
crypto.h
88
uint16_t
Message_Block_Index
; /* Index into message block array */
Completed in 1160 milliseconds