libsodium/demos/demo_utils.h

16 lines
387 B
C
Raw Normal View History

/*
* Utility functions shared by all the demo programs.
*/
#ifndef DEMO_UTILS_H
#define DEMO_UTILS_H
#include <stdlib.h>
#define MAX_INPUT_SIZE 128 /* size of all input buffers in the demo */
void print_hex(const void *bin, const size_t bin_len);
size_t prompt_input(char *prompt, char *input, const size_t max_input_len);
void print_verification(int r);
2015-05-27 07:02:56 -04:00
#endif /* DEMO_UTILS_H */