Lines Matching refs:cfg

31 	} cfg;			/* config block */
61 cfg.w[0] = Skein_Swap64(SKEIN_SCHEMA_VER);
63 cfg.w[1] = Skein_Swap64(hashBitLen);
64 cfg.w[2] = Skein_Swap64(SKEIN_CFG_TREE_INFO_SEQUENTIAL);
66 bzero(&cfg.w[3], sizeof (cfg) - 3 * sizeof (cfg.w[0]));
71 Skein_256_Process_Block(ctx, cfg.b, 1, SKEIN_CFG_STR_LEN);
96 } cfg; /* config block */
107 Skein_assert(sizeof (cfg.b) >= sizeof (ctx->X));
117 /* put result into cfg.b[] */
118 (void) Skein_256_Final_Pad(ctx, cfg.b);
120 bcopy(cfg.b, ctx->X, sizeof (cfg.b));
137 bzero(&cfg.w, sizeof (cfg.w)); /* pre-pad cfg.w[] with zeroes */
138 cfg.w[0] = Skein_Swap64(SKEIN_SCHEMA_VER);
139 cfg.w[1] = Skein_Swap64(hashBitLen); /* hash result length in bits */
141 cfg.w[2] = Skein_Swap64(treeInfo);
146 Skein_256_Process_Block(ctx, cfg.b, 1, SKEIN_CFG_STR_LEN);
267 } cfg; /* config block */
297 cfg.w[0] = Skein_Swap64(SKEIN_SCHEMA_VER);
299 cfg.w[1] = Skein_Swap64(hashBitLen);
300 cfg.w[2] = Skein_Swap64(SKEIN_CFG_TREE_INFO_SEQUENTIAL);
302 bzero(&cfg.w[3], sizeof (cfg) - 3 * sizeof (cfg.w[0]));
307 Skein_512_Process_Block(ctx, cfg.b, 1, SKEIN_CFG_STR_LEN);
333 } cfg; /* config block */
344 Skein_assert(sizeof (cfg.b) >= sizeof (ctx->X));
353 /* put result into cfg.b[] */
354 (void) Skein_512_Final_Pad(ctx, cfg.b);
356 bcopy(cfg.b, ctx->X, sizeof (cfg.b));
373 bzero(&cfg.w, sizeof (cfg.w)); /* pre-pad cfg.w[] with zeroes */
374 cfg.w[0] = Skein_Swap64(SKEIN_SCHEMA_VER);
375 cfg.w[1] = Skein_Swap64(hashBitLen); /* hash result length in bits */
377 cfg.w[2] = Skein_Swap64(treeInfo);
382 Skein_512_Process_Block(ctx, cfg.b, 1, SKEIN_CFG_STR_LEN);
503 } cfg; /* config block */
530 cfg.w[0] = Skein_Swap64(SKEIN_SCHEMA_VER);
532 cfg.w[1] = Skein_Swap64(hashBitLen);
533 cfg.w[2] = Skein_Swap64(SKEIN_CFG_TREE_INFO_SEQUENTIAL);
535 bzero(&cfg.w[3], sizeof (cfg) - 3 * sizeof (cfg.w[0]));
540 Skein1024_Process_Block(ctx, cfg.b, 1, SKEIN_CFG_STR_LEN);
566 } cfg; /* config block */
576 Skein_assert(sizeof (cfg.b) >= sizeof (ctx->X));
585 /* put result into cfg.b[] */
586 (void) Skein1024_Final_Pad(ctx, cfg.b);
588 bcopy(cfg.b, ctx->X, sizeof (cfg.b));
605 bzero(&cfg.w, sizeof (cfg.w)); /* pre-pad cfg.w[] with zeroes */
606 cfg.w[0] = Skein_Swap64(SKEIN_SCHEMA_VER);
608 cfg.w[1] = Skein_Swap64(hashBitLen);
610 cfg.w[2] = Skein_Swap64(treeInfo);
615 Skein1024_Process_Block(ctx, cfg.b, 1, SKEIN_CFG_STR_LEN);