summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 063f9c65be..ce1f0fd9af 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -66,6 +66,16 @@
#include <openssl/crypto.h>
#include "progs.h"
+int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn);
+int app_RAND_write_file(const char *file, BIO *bio_e);
+/* When `file' is NULL, use defaults.
+ * `bio_e' is for error messages. */
+void app_RAND_allow_write_file(void);
+long app_RAND_load_files(char *file); /* `file' is a list of files to read,
+ * separated by LIST_SEPARATOR_CHAR
+ * (see e_os.h). The string is
+ * destroyed! */
+
#ifdef NO_STDIO
BIO_METHOD *BIO_s_file();
#endif