diff options
Diffstat (limited to 'src/prng_mbed.c')
-rw-r--r-- | src/prng_mbed.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/prng_mbed.c b/src/prng_mbed.c index ae5d3b8..7a3a6d1 100644 --- a/src/prng_mbed.c +++ b/src/prng_mbed.c @@ -52,11 +52,13 @@ void prng_update(prng_context_t *ctx, const uint8_t *input, size_t ilen) mbedtls_md_update(&ctx->md, (const unsigned char *) input, ilen); } -void prng_finish(prng_context_t *ctx, uint8_t *output) +void prng_finish(prng_context_t *ctx, uint8_t *output, uint8_t *output2) { uint8_t tmp[160]; mbedtls_md_finish(&ctx->md, tmp); memcpy(output, tmp, 8); + if (output2) + memcpy(output2, tmp + 8, 8); } #if 0 |