rsa-private-key-types.h
1 
21 #ifndef NDN_RSA_PRIVATE_KEY_TYPES_H
22 #define NDN_RSA_PRIVATE_KEY_TYPES_H
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 struct rsa_st;
29 
35  struct rsa_st *privateKey;
36 };
37 
38 #ifdef __cplusplus
39 }
40 #endif
41 
42 #endif
A struct ndn_RsaPrivateKey holds a decoded RSA private key for use in crypto operations.
Definition: rsa-private-key-types.h:34