From ec881c84b63975f70ffac77ad294deef341e6a51 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Sat, 22 Nov 2008 17:48:16 +0100
Subject: [PATCH] (yarrow256_fast_reseed): Set ctx->seeded = 1, so that it is
 set if and only if the aes context has been initialized with
 aes_set_encrypt_key. (yarrow256_seed): No need to set ctx->seeded here.
 (yarrow256_update): Likewise.

Rev: nettle/ChangeLog:1.28
Rev: nettle/yarrow256.c:1.5
---
 ChangeLog   | 8 ++++++++
 yarrow256.c | 5 +----
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 46d73e8e..b69559c6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-11-22  Niels M�ller  <nisse@lysator.liu.se>
+
+	* yarrow256.c (yarrow256_fast_reseed): Set ctx->seeded = 1, so
+	that it is set if and only if the aes context has been initialized
+	with aes_set_encrypt_key.
+	(yarrow256_seed): No need to set ctx->seeded here.
+	(yarrow256_update): Likewise.
+
 2008-11-04  Niels M�ller  <nisse@lysator.liu.se>
 
 	* examples/next-prime.c (main): Avoid using gmp_fprintf, to stay
diff --git a/yarrow256.c b/yarrow256.c
index e1ae77c1..0a5f8a09 100644
--- a/yarrow256.c
+++ b/yarrow256.c
@@ -108,8 +108,6 @@ yarrow256_seed(struct yarrow256_ctx *ctx,
 
   sha256_update(&ctx->pools[YARROW_FAST], length, seed_file);
   yarrow256_fast_reseed(ctx);
-
-  ctx->seeded = 1;
 }
 
 /* FIXME: Generalize so that it generates a few more blocks at a
@@ -193,6 +191,7 @@ yarrow256_fast_reseed(struct yarrow256_ctx *ctx)
   yarrow_iterate(digest);
 
   aes_set_encrypt_key(&ctx->key, sizeof(digest), digest);
+  ctx->seeded = 1;
 
   /* Derive new counter value */
   memset(ctx->counter, 0, sizeof(ctx->counter));
@@ -294,8 +293,6 @@ yarrow256_update(struct yarrow256_ctx *ctx,
         if (!yarrow256_needed_sources(ctx))
 	  {
 	    yarrow256_slow_reseed(ctx);
-	    ctx->seeded = 1;
-
 	    return 1;
 	  }
 	else
-- 
GitLab