Made ctr_drbg_init_entropy_len() non-static and defined
diff --git a/library/ctr_drbg.c b/library/ctr_drbg.c
index 3182c3b..970de52 100644
--- a/library/ctr_drbg.c
+++ b/library/ctr_drbg.c
@@ -42,7 +42,7 @@
* Non-public function wrapped by ctr_crbg_init(). Necessary to allow NIST
* tests to succeed (which require known length fixed entropy)
*/
-static int ctr_drbg_init_entropy_len(
+int ctr_drbg_init_entropy_len(
ctr_drbg_context *ctx,
int (*f_entropy)(void *, unsigned char *, size_t),
void *p_entropy,