Rev: src/nettle/ChangeLog:1.48
Rev: src/nettle/yarrow.h:1.9
Rev: src/nettle/yarrow256.c:1.13
+2001-11-15 Niels Möller <nisse@cuckoo.hack.org>
+
+ * yarrow256.c (yarrow256_force_reseed): New function.
+
2001-11-14 Niels Möller <nisse@ehand.com>
* testsuite/yarrow-test.c (main): Use yarrow256_is_seeded.
unsigned
yarrow256_needed_sources(struct yarrow256_ctx *ctx);
+void
+yarrow256_force_reseed(struct yarrow256_ctx *ctx);
+
+
/* Key event estimator */
#define YARROW_KEY_EVENT_BUFFER 16
return (k < YARROW_SLOW_K) ? (YARROW_SLOW_K - k) : 0;
}
+
+void
+yarrow256_force_reseed(struct yarrow256_ctx *ctx)
+{
+ yarrow_slow_reseed(ctx);
+}