| 273 | } |
| 274 | |
| 275 | static void |
| 276 | sha3_Init256(void *priv) |
| 277 | { |
| 278 | sha3_context *ctx = (sha3_context *) priv; |
| 279 | |
| 280 | memset(ctx, 0, sizeof(*ctx)); |
| 281 | ctx->capacityWords = 2 * 256 / (8 * sizeof(uint64_t)); |
| 282 | } |
| 283 | |
| 284 | static void |
| 285 | sha3_Init384(void *priv) |
no test coverage detected