Don't compile pcgrandom on Windows

There it isn't needed.
This commit is contained in:
est31 2015-11-08 18:16:20 +01:00
parent f9e394a466
commit 337c02c0f0
1 changed files with 2 additions and 1 deletions

View File

@ -496,6 +496,7 @@ static void calculate_H_AMK(SRP_HashAlgorithm alg, unsigned char *dest, const mp
hash_final(alg, &ctx, dest);
}
#ifndef WIN32
struct srp_pcgrandom {
unsigned long long int m_state;
@ -521,7 +522,7 @@ static void srp_pcgrandom_seed(srp_pcgrandom *r, unsigned long long int state,
r->m_state += state;
srp_pcgrandom_next(r);
}
#endif
static SRP_Result fill_buff()
{