21 lines
352 B
C
21 lines
352 B
C
#ifndef FT_SSL_H
|
|
#define FT_SSL_H
|
|
|
|
#include <cli.h>
|
|
#include <libft_ssl.h>
|
|
#include <stdint.h>
|
|
|
|
#define DIGEST_MAX_STRINGS 64
|
|
|
|
struct digest_config
|
|
{
|
|
const struct digest_algo *algo;
|
|
const char *cmd_name;
|
|
uint8_t flags;
|
|
const char *strings[DIGEST_MAX_STRINGS];
|
|
int nb_strings;
|
|
char **files;
|
|
int nb_files;
|
|
};
|
|
|
|
#endif
|