summaryrefslogtreecommitdiff
path: root/nacl/randombytes/test.c
blob: 646811ca08def088e52acbb902a1ad8c11443fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "randombytes-impl.h"

unsigned char x[65536];
unsigned long long freq[256];

int main()
{
  unsigned long long i;

  randombytes(x,sizeof x);
  for (i = 0;i < 256;++i) freq[i] = 0;
  for (i = 0;i < sizeof x;++i) ++freq[255 & (int) x[i]];
  for (i = 0;i < 256;++i) if (!freq[i]) return 111;
  return 0;
}