summaryrefslogtreecommitdiffstats
path: root/Tests/FindOpenSSL/rand/main.cc
blob: a5d1ac097e1e41062fa1d9f9e0f6e92855ee4d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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;
}