From: rasky Date: Wed, 29 Sep 2010 16:59:40 +0000 (+0000) Subject: Remove debug spew X-Git-Tag: 2.6.0~34 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=dec1f9c1632f5855fc8a1adbd89f023b5914a72d;p=bertos.git Remove debug spew git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4367 38d2e660-2303-0410-9eaa-f027e97ec537 --- 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));