Module: kamailio
Branch: master
Commit: ca12494ec776babab86897eba35b88424a707c69
URL:
https://github.com/kamailio/kamailio/commit/ca12494ec776babab86897eba35b884…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2019-10-07T15:16:37+02:00
modules: readme files regenerated - tls ... [skip ci]
---
Modified: src/modules/tls/README
---
Diff:
https://github.com/kamailio/kamailio/commit/ca12494ec776babab86897eba35b884…
Patch:
https://github.com/kamailio/kamailio/commit/ca12494ec776babab86897eba35b884…
---
diff --git a/src/modules/tls/README b/src/modules/tls/README
index b0d9fa2601..650a964b58 100644
--- a/src/modules/tls/README
+++ b/src/modules/tls/README
@@ -1435,12 +1435,14 @@ end
The following options are avaialble:
* krand - use internal kam_rand() function
* fastrand - use internal fastrand function
- * cryptorand - use internal cryptorand function
+ * cryptorand - use internal cryptorand (fortuna) function
+
+ Note: the krand and fastrand engines are not recommended for use on
+ systems requiring strong security, as they may not generate numbers
+ with enough randomness.
The default value is empty (not set) for libssl v1.0.x or older, and
- "cryptorand" for libssl v1.1.x or newer. The krand and fastrand engines
- are not recommended for production use, as they will not generate
- secure enough random numbers.
+ "cryptorand" for libssl v1.1.x or newer.
Example 1.45. Set rand_engine parameter
...