supercop

Basic CLI for supercop
git clone git://git.finwo.net/app/supercop
Log | Files | Refs | README | LICENSE

keypair.h (323B)


      1 #ifndef __SUPERCOP_KEYPAIR_KEYPAIR_H__
      2 #define __SUPERCOP_KEYPAIR_KEYPAIR_H__
      3 
      4 #ifdef __cplusplus
      5 extern "C" {
      6 #endif
      7 
      8 struct KeyPair {
      9   unsigned char *public_key;
     10   unsigned char *private_key;
     11 };
     12 
     13 void keypair_free(struct KeyPair *kp);
     14 
     15 #ifdef __cplusplus
     16 } // extern "C"
     17 #endif
     18 
     19 #endif // __SUPERCOP_KEYPAIR_KEYPAIR_H__