projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Modify the DEVRANDOM source so that the files are kept open persistently.
[openssl.git]
/
crypto
/
rand
/
rand_vms.c
diff --git
a/crypto/rand/rand_vms.c
b/crypto/rand/rand_vms.c
index
b263f94
..
43dddf3
100644
(file)
--- a/
crypto/rand/rand_vms.c
+++ b/
crypto/rand/rand_vms.c
@@
-507,4
+507,17
@@
int rand_pool_add_additional_data(RAND_POOL *pool)
return rand_pool_add(pool, (unsigned char *)&data, sizeof(data), 0);
}
+int rand_pool_init(void)
+{
+ return 1;
+}
+
+void rand_pool_cleanup(void)
+{
+}
+
+void rand_pool_keep_random_devices_open(int keep)
+{
+}
+
#endif