comparison ltc_prng.c @ 1295:750ec4ec4cbe

Convert #ifdef to #if, other build changes
author Matt Johnston <matt@ucc.asn.au>
date Wed, 04 May 2016 15:33:40 +0200
parents 210f6b49df89
children d68d61e7056a
comparison
equal deleted inserted replaced
1294:56aba7dedbea 1295:750ec4ec4cbe
24 /* A secure PRNG using the RNG functions. Basically this is a 24 /* A secure PRNG using the RNG functions. Basically this is a
25 * wrapper that allows you to use a secure RNG as a PRNG 25 * wrapper that allows you to use a secure RNG as a PRNG
26 * in the various other functions. 26 * in the various other functions.
27 */ 27 */
28 28
29 #ifdef DROPBEAR_LTC_PRNG 29 #if DROPBEAR_LTC_PRNG
30 30
31 /** 31 /**
32 Start the PRNG 32 Start the PRNG
33 @param prng [out] The PRNG state to initialize 33 @param prng [out] The PRNG state to initialize
34 @return CRYPT_OK if successful 34 @return CRYPT_OK if successful