========================================================================= */
(square, mat)
| 382 | |
| 383 | /* ========================================================================= */ |
| 384 | local void gf2_matrix_square(square, mat) |
| 385 | unsigned long* square; |
| 386 | |
| 387 | unsigned long* mat; |
| 388 | { |
| 389 | int n; |
| 390 | |
| 391 | for (n = 0; n < GF2_DIM; n++) |
| 392 | square[n] = gf2_matrix_times(mat, mat[n]); |
| 393 | } |
| 394 | |
| 395 | /* ========================================================================= */ |
| 396 | local uLong crc32_combine_(crc1, crc2, len2) |
no test coverage detected