Message195782
| Author | vstinner |
|---|---|
| Recipients | barry, benjamin.peterson, christian.heimes, georg.brandl, neologix, pitrou, python-dev, sbt, vstinner |
| Date | 2013-08-21.12:08:35 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <CAMpsgwbasVtoB+Z6a+8SKmJQPe4CiEFt4cS-ketf25H3RFUeRQ@mail.gmail.com> |
| In-reply-to | <1377085745.39.0.491921665481.issue18747@psf.upfronthosting.co.za> |
| Content | |
|---|---|
3.52 +#if 0
3.53 + fprintf(stderr, "PySSL_RAND_atfork_child() seeds %i
bytes in pid %i\n",
3.54 + (int)sizeof(seed), seed.pid);
3.55 +#endif
Don't you want to remove this debug code?
1.8 + def test_random_fork(self):
1.9 + status = ssl.RAND_status()
1.10 + if not status:
1.11 + self.fail("OpenSSL's PRNG has insufficient randomness")
The test uses ssl.RAND_pseudo_bytes(), the check on ssl.RAND_status()
must be removed. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2013-08-21 12:08:35 | vstinner | set | recipients: + vstinner, barry, georg.brandl, pitrou, christian.heimes, benjamin.peterson, neologix, python-dev, sbt |
| 2013-08-21 12:08:35 | vstinner | link | issue18747 messages |
| 2013-08-21 12:08:35 | vstinner | create | |