| 1424 | |
| 1425 | |
| 1426 | int RAND_bytes(unsigned char* buf, int num) |
| 1427 | { |
| 1428 | RandomPool ran; |
| 1429 | |
| 1430 | if (ran.GetError()) return 0; |
| 1431 | |
| 1432 | ran.Fill(buf, num); |
| 1433 | return 1; |
| 1434 | } |
| 1435 | |
| 1436 | |
| 1437 | int SSL_peek(SSL* ssl, void* buffer, int sz) |
no test coverage detected