From dec1f9c1632f5855fc8a1adbd89f023b5914a72d Mon Sep 17 00:00:00 2001 From: rasky Date: Wed, 29 Sep 2010 16:59:40 +0000 Subject: [PATCH] Remove debug spew git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4367 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/sec/prng/yarrow.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bertos/sec/prng/yarrow.c b/bertos/sec/prng/yarrow.c index 8dbaf92f..3d9469fc 100644 --- a/bertos/sec/prng/yarrow.c +++ b/bertos/sec/prng/yarrow.c @@ -94,8 +94,6 @@ static void yarrow_reseed(PRNG *ctx_, const uint8_t *seed) hash_update(h, seed, ctx->prng.seed_len); hash_update(h, ctx->curkey, sizeof(ctx->curkey)); memcpy(ctx->curkey, hash_final(h), sizeof(ctx->curkey)); - kprintf("Yarrow reseeding:"); - kdump(ctx->curkey, sizeof(ctx->curkey)); // Reset the counter for the sequence memset(ctx->counter, 0, sizeof(ctx->counter)); -- 2.25.1