| 291 | } |
| 292 | |
| 293 | static void |
| 294 | sha3_Init512(void *priv) |
| 295 | { |
| 296 | sha3_context *ctx = (sha3_context *) priv; |
| 297 | |
| 298 | memset(ctx, 0, sizeof(*ctx)); |
| 299 | ctx->capacityWords = 2 * 512 / (8 * sizeof(uint64_t)); |
| 300 | } |
| 301 | |
| 302 | |
| 303 | /* This is simply the 'update' with the padding block. |
no test coverage detected