Paper wallet for Hush, which you can use with no internet access while wearing a tinfoil hat inside of a Faraday cage. https://hush.is
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
383 B

#ifndef _HUSH_PAPER_RUST_H
#define _HUSH_PAPER_RUST_H
#ifdef __cplusplus
extern "C"{
#endif
extern char * rust_generate_wallet(bool is_testnet, unsigned int zcount, unsigned int tcount, const char* entropy);
extern void rust_free_string (char* s);
extern bool rust_save_as_pdf (bool is_testnet, const char* json, const char* filename);
#ifdef __cplusplus
}
#endif
#endif