Home | History | Annotate | Download | only in axtls

Lines Matching refs:Message_Block

59         ctx->Message_Block[ctx->Message_Block_Index++] = (*msg & 0xFF);
84 memset(ctx->Message_Block, 0, 64);
115 W[t] = ctx->Message_Block[t * 4] << 24;
116 W[t] |= ctx->Message_Block[t * 4 + 1] << 16;
117 W[t] |= ctx->Message_Block[t * 4 + 2] << 8;
118 W[t] |= ctx->Message_Block[t * 4 + 3];
188 * according to those rules by filling the Message_Block array
205 ctx->Message_Block[ctx->Message_Block_Index++] = 0x80;
208 ctx->Message_Block[ctx->Message_Block_Index++] = 0;
215 ctx->Message_Block[ctx->Message_Block_Index++] = 0;
220 ctx->Message_Block[ctx->Message_Block_Index++] = 0x80;
224 ctx->Message_Block[ctx->Message_Block_Index++] = 0;
231 ctx->Message_Block[56] = ctx->Length_High >> 24;
232 ctx->Message_Block[57] = ctx->Length_High >> 16;
233 ctx->Message_Block[58] = ctx->Length_High >> 8;
234 ctx->Message_Block[59] = ctx->Length_High;
235 ctx->Message_Block[60] = ctx->Length_Low >> 24;
236 ctx->Message_Block[61] = ctx->Length_Low >> 16;
237 ctx->Message_Block[62] = ctx->Length_Low >> 8;
238 ctx->Message_Block[63] = ctx->Length_Low;