Add hmac_drbg_set_entropy_len()
diff --git a/library/hmac_drbg.c b/library/hmac_drbg.c
index a8fe486..a322b48 100644
--- a/library/hmac_drbg.c
+++ b/library/hmac_drbg.c
@@ -157,6 +157,14 @@
 }
 
 /*
+ * Set entropy length grabbed for reseeds
+ */
+void hmac_drbg_set_entropy_len( hmac_drbg_context *ctx, size_t len )
+{
+    ctx->entropy_len = len;
+}
+
+/*
  * HMAC_DRBG random function with optional additional data (10.1.2.5)
  */
 int hmac_drbg_random_with_add( void *p_rng,