Introduced entropy_free()

This commit is contained in:
Paul Bakker 2013-09-28 15:23:03 +02:00
parent c55988406f
commit 1ffefaca1e
28 changed files with 38 additions and 0 deletions

View file

@ -64,6 +64,11 @@ void entropy_init( entropy_context *ctx )
#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 )