+2013-08-13 Niels Möller <nisse@lysator.liu.se>
+
+ * yarrow.h (struct yarrow256_ctx): Use aes256_ctx, not aes_ctx.
+ * yarrow256.c: Adapted to use new aes256 interface.
+
2013-08-07 Niels Möller <nisse@lysator.liu.se>
* umac.h (_UMAC_STATE): Use struct aes128_ctx, not aes_ctx.
{
unsigned i;
- aes_encrypt(&ctx->key, sizeof(ctx->counter), block, ctx->counter);
+ aes256_encrypt(&ctx->key, sizeof(ctx->counter), block, ctx->counter);
/* Increment counter, treating it as a big-endian number. This is
* machine independent, and follows appendix B of the NIST
/* Iterate */
yarrow_iterate(digest);
- aes_set_encrypt_key(&ctx->key, sizeof(digest), digest);
+ aes256_set_encrypt_key(&ctx->key, digest);
ctx->seeded = 1;
/* Derive new counter value */
memset(ctx->counter, 0, sizeof(ctx->counter));
- aes_encrypt(&ctx->key, sizeof(ctx->counter), ctx->counter, ctx->counter);
+ aes256_encrypt(&ctx->key, sizeof(ctx->counter), ctx->counter, ctx->counter);
/* Reset estimates. */
for (i = 0; i<ctx->nsources; i++)
static void
yarrow_gate(struct yarrow256_ctx *ctx)
{
- uint8_t key[AES_MAX_KEY_SIZE];
+ uint8_t key[AES256_KEY_SIZE];
unsigned i;
for (i = 0; i < sizeof(key); i+= AES_BLOCK_SIZE)
yarrow_generate_block(ctx, key + i);
- aes_set_encrypt_key(&ctx->key, sizeof(key), key);
+ aes256_set_encrypt_key(&ctx->key, key);
}
void