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