mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
15 lines
325 B
C
15 lines
325 B
C
#include "randombytes.h"
|
|
|
|
/* XXX: current implementation is limited to n<2^55 */
|
|
|
|
long long randommod(long long n)
|
|
{
|
|
long long result = 0;
|
|
long long j;
|
|
unsigned char r[32];
|
|
if (n <= 1) return 0;
|
|
randombytes(r,32);
|
|
for (j = 0;j < 32;++j) result = (result * 256 + (unsigned long long) r[j]) % n;
|
|
return result;
|
|
}
|