Mercurial > dropbear
comparison genrsa.h @ 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 | deed0571cacc |
children |
comparison
equal
deleted
inserted
replaced
1294:56aba7dedbea | 1295:750ec4ec4cbe |
---|---|
25 #ifndef DROPBEAR_GENRSA_H_ | 25 #ifndef DROPBEAR_GENRSA_H_ |
26 #define DROPBEAR_GENRSA_H_ | 26 #define DROPBEAR_GENRSA_H_ |
27 | 27 |
28 #include "rsa.h" | 28 #include "rsa.h" |
29 | 29 |
30 #ifdef DROPBEAR_RSA | 30 #if DROPBEAR_RSA |
31 | 31 |
32 dropbear_rsa_key * gen_rsa_priv_key(unsigned int size); | 32 dropbear_rsa_key * gen_rsa_priv_key(unsigned int size); |
33 | 33 |
34 #endif /* DROPBEAR_RSA */ | 34 #endif /* DROPBEAR_RSA */ |
35 | 35 |