9 lines
201 B
C++
9 lines
201 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace fc {
|
||
|
|
|
||
|
|
/* provides access to the OpenSSL random number generator */
|
||
|
|
void rand_bytes(char* buf, int count);
|
||
|
|
void rand_pseudo_bytes(char* buf, int count);
|
||
|
|
} // namespace fc
|