| 33 | #include "randombytes.h" |
| 34 | |
| 35 | RandomBytes::RandomBytes() : m_bufpos(RANDOM_POOL_SIZE) |
| 36 | { |
| 37 | m_randbuf = new BYTE[RANDOM_POOL_SIZE]; |
| 38 | } |
| 39 | |
| 40 | RandomBytes::~RandomBytes() |
| 41 | { |
nothing calls this directly
no outgoing calls
no test coverage detected