PolarSSL v1.3.1
pk_wrap.h
Go to the documentation of this file.
1 
28 #ifndef POLARSSL_PK_WRAP_H
29 #define POLARSSL_PK_WRAP_H
30 
31 #include "config.h"
32 
33 #include "pk.h"
34 
35 /* Container for RSA-alt */
36 typedef struct
37 {
38  void *key;
43 
44 #if defined(POLARSSL_RSA_C)
45 extern const pk_info_t rsa_info;
46 #endif
47 
48 #if defined(POLARSSL_ECP_C)
49 extern const pk_info_t eckey_info;
50 extern const pk_info_t eckeydh_info;
51 #endif
52 
53 #if defined(POLARSSL_ECDSA_C)
54 extern const pk_info_t ecdsa_info;
55 #endif
56 
57 extern const pk_info_t rsa_alt_info;
58 
59 #endif /* POLARSSL_PK_WRAP_H */