Rename the 'no entropy' feature to MBEDTLS_TEST_NULL_ENTROPY
Following review and for clarity, changed the name of the feature to 'null
entropy'.
diff --git a/library/entropy_poll.c b/library/entropy_poll.c
index 1ddbdc7..ed80bab 100644
--- a/library/entropy_poll.c
+++ b/library/entropy_poll.c
@@ -191,11 +191,12 @@
#endif /* _WIN32 && !EFIX64 && !EFI32 */
#endif /* !MBEDTLS_NO_PLATFORM_ENTROPY */
-#if defined(MBEDTLS_TEST_WO_ENTROPY)
+#if defined(MBEDTLS_TEST_NULL_ENTROPY)
int mbedtls_zero_entropy_poll( void *data,
unsigned char *output, size_t len, size_t *olen )
{
((void) data);
+ ((void) output);
*olen = 0;
if( len < sizeof(unsigned char) )