You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
312 B
23 lines
312 B
9 years ago
|
#include <openssl/rand.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
// return value
|
||
|
int retval = 1;
|
||
|
|
||
|
// bytes buffer
|
||
|
unsigned char buf[1024];
|
||
|
|
||
|
// random bytes
|
||
|
int rezval = RAND_bytes(buf, sizeof(buf)); /* 1 succes, 0 otherwise */
|
||
|
|
||
|
// check result
|
||
|
if(rezval == 1)
|
||
|
{
|
||
|
retval = 0;
|
||
|
}
|
||
|
|
||
|
// return code
|
||
|
return retval;
|
||
|
}
|