Support for seed file writing and reading in Entropy
diff --git a/library/error.c b/library/error.c
index 9f89416..98c93ff 100644
--- a/library/error.c
+++ b/library/error.c
@@ -508,6 +508,8 @@
snprintf( buf, buflen, "ENTROPY - No more sources can be added" );
if( use_ret == -(POLARSSL_ERR_ENTROPY_NO_SOURCES_DEFINED) )
snprintf( buf, buflen, "ENTROPY - No sources have been added to poll" );
+ if( use_ret == -(POLARSSL_ERR_ENTROPY_FILE_IO_ERROR) )
+ snprintf( buf, buflen, "ENTROPY - Read/write error in file" );
#endif /* POLARSSL_ENTROPY_C */
#if defined(POLARSSL_GCM_C)