Home | History | Annotate | Download | only in cipher

Lines Matching refs:ROUNDS

128 	// precomputation tables of calculations for rounds
428 ROUNDS = KC + 6; // This is not always true for the generalized
430 int[][] W = new int[ROUNDS + 1][4]; // 4 words in a block
448 int k = (ROUNDS + 1) << 2;
466 for (int j = 1; j < ROUNDS; j++)
478 private int ROUNDS;
615 for (r = 1; r < ROUNDS - 1;)
650 C0 ^= KW[ROUNDS][0];
651 C1 ^= KW[ROUNDS][1];
652 C2 ^= KW[ROUNDS][2];
653 C3 ^= KW[ROUNDS][3];
655 for (r = ROUNDS - 1; r > 1;)