File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -354,9 +354,8 @@ Random generation
354
354
.. function :: RAND_status()
355
355
356
356
Return ``True `` if the SSL pseudo-random number generator has been seeded
357
- with 'enough' randomness, and ``False `` otherwise. You can use
358
- :func: `ssl.RAND_egd ` and :func: `ssl.RAND_add ` to increase the randomness of
359
- the pseudo-random number generator.
357
+ with 'enough' randomness, and ``False `` otherwise. Use :func: `ssl.RAND_add `
358
+ to increase the randomness of the pseudo-random number generator.
360
359
361
360
.. function :: RAND_add(bytes, entropy, /)
362
361
Original file line number Diff line number Diff line change 110
110
)
111
111
from _ssl import txt2obj as _txt2obj , nid2obj as _nid2obj
112
112
from _ssl import RAND_status , RAND_add , RAND_bytes
113
- try :
114
- from _ssl import RAND_egd
115
- except ImportError :
116
- # RAND_egd is not supported on some platforms
117
- pass
118
113
from _ssl import get_sigalgs
119
114
120
115
You can’t perform that action at this time.
0 commit comments