comparison signkey.h @ 586:b50f0107e505

Rename rsa_key to dropbear_rsa_key (and same for dss too) so we don't conflict with libtomcrypt.
author Matt Johnston <matt@ucc.asn.au>
date Wed, 21 Jul 2010 12:55:25 +0000
parents c3f2ec71e3d4
children f336d232fc63
comparison
equal deleted inserted replaced
585:d194db6f9453 586:b50f0107e505
44 char *filename; 44 char *filename;
45 /* the buffer? for encrypted keys, so we can later get 45 /* the buffer? for encrypted keys, so we can later get
46 * the private key portion */ 46 * the private key portion */
47 47
48 #ifdef DROPBEAR_DSS 48 #ifdef DROPBEAR_DSS
49 dss_key * dsskey; 49 dropbear_dss_key * dsskey;
50 #endif 50 #endif
51 #ifdef DROPBEAR_RSA 51 #ifdef DROPBEAR_RSA
52 rsa_key * rsakey; 52 dropbear_rsa_key * rsakey;
53 #endif 53 #endif
54 }; 54 };
55 55
56 typedef struct SIGN_key sign_key; 56 typedef struct SIGN_key sign_key;
57 57