Remove debug spew
authorrasky <rasky@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 29 Sep 2010 16:59:40 +0000 (16:59 +0000)
committerrasky <rasky@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 29 Sep 2010 16:59:40 +0000 (16:59 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4367 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/sec/prng/yarrow.c

index 8dbaf92fe8ad434846c36bf65c18e3874f17e6c7..3d9469fc85e1fb69b10d43c6513bb5c3481a9096 100644 (file)
@@ -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));