| 282 | } |
| 283 | |
| 284 | static void |
| 285 | sha3_Init384(void *priv) |
| 286 | { |
| 287 | sha3_context *ctx = (sha3_context *) priv; |
| 288 | |
| 289 | memset(ctx, 0, sizeof(*ctx)); |
| 290 | ctx->capacityWords = 2 * 384 / (8 * sizeof(uint64_t)); |
| 291 | } |
| 292 | |
| 293 | static void |
| 294 | sha3_Init512(void *priv) |
no test coverage detected