sxt: minor fix - missing sys types, added export pubkey API;

This commit is contained in:
Alexander Vdolainen 2016-06-26 04:03:12 +03:00
parent 116aa2b6bf
commit f5e33dca7d
2 changed files with 4 additions and 0 deletions

View File

@ -110,6 +110,9 @@ int sxt_key_export_priv_file(const sxtkey_t *key, const char *file, const char *
int (*ask_passkey)(char *pkbuf, size_t length, int confirm, void *priv),
void *priv);
/* export a public key to a given file */
int sxt_key_export_public_file(const sxtkey_t *key, const char *file);
/* key custom hash ops */
/* assign a 64bit hash, 0 mean there are no hash */
int sxt_key_assign_hash(sxtkey_t *, uint64_t);

View File

@ -7,6 +7,7 @@
#include "config.h"
#include <stdint.h>
#include <sys/types.h>
#include <sxt/ge25519.h>
#include <sxt/sxtkey.h>
#include <sxt/ciphers.h>