| 264 | } |
| 265 | |
| 266 | static void |
| 267 | sha3_Init224(void *priv) |
| 268 | { |
| 269 | sha3_context *ctx = (sha3_context *) priv; |
| 270 | |
| 271 | memset(ctx, 0, sizeof(*ctx)); |
| 272 | ctx->capacityWords = 2 * 224 / (8 * sizeof(uint64_t)); |
| 273 | } |
| 274 | |
| 275 | static void |
| 276 | sha3_Init256(void *priv) |
no test coverage detected