X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fsec%2Fprng%2Fyarrow.c;h=3d9469fc85e1fb69b10d43c6513bb5c3481a9096;hb=45a5ed5a6f4ccb4cf34e54b92eccb486436bc469;hp=8dbaf92fe8ad434846c36bf65c18e3874f17e6c7;hpb=9f81973580cc5d25d40930f64c74d80480949717;p=bertos.git 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));