1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-25 05:30:26 +08:00
luz.paz d91b2d9158 MAINT: Misc. typos
Found via `codespell`
2018-01-10 12:34:14 -05:00

22 lines
312 B
C++

#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 success, 0 otherwise */
// check result
if (rezval == 1) {
retval = 0;
}
// return code
return retval;
}