commit | 1ffefaca1e13203ca03a439e2513c51d0f755a29 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Sat Sep 28 15:23:03 2013 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Sun Sep 29 15:01:42 2013 +0200 |
tree | cfba6144b2c0db1cd605c1aa31928bbdbfb1b738 | |
parent | c55988406f9ef0d79539ed9764c0bc2a1168ffa7 [diff] [blame] |
Introduced entropy_free()
diff --git a/library/entropy.c b/library/entropy.c index 2352bcf..d43f983 100644 --- a/library/entropy.c +++ b/library/entropy.c
@@ -64,6 +64,11 @@ #endif /* POLARSSL_NO_DEFAULT_ENTROPY_SOURCES */ } +void entropy_free( entropy_context *ctx ) +{ + ((void) ctx); +} + int entropy_add_source( entropy_context *ctx, f_source_ptr f_source, void *p_source, size_t threshold )