From 2e47298639b3e4971e2a7b35d50b57340276435b Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 21:39:44 +0200 Subject: Disabling previous work temporarily to focus on the algorithm --- inc/ft_ssl.h | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 inc/ft_ssl.h (limited to 'inc/ft_ssl.h') diff --git a/inc/ft_ssl.h b/inc/ft_ssl.h new file mode 100644 index 0000000..f3e3595 --- /dev/null +++ b/inc/ft_ssl.h @@ -0,0 +1,53 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_ssl.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/03 20:27:19 by cacharle #+# #+# */ +/* Updated: 2020/07/27 21:38:12 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ +#include + +#ifndef FT_SSL_H +# define FT_SSL_H + +# include "libft.h" + +# include "ft_ssl_md5.h" + +// # include "ft_ssl_md5.h" +// # include "ft_ssl_sha256.h" + +// typedef int (*t_func_main)(int argc, char **argv); +// +// typedef struct +// { +// char *name; +// t_func_hash func; +// } t_command; +// +// typedef enum +// { +// FLAG_PIPE = 1 << 0, +// FLAG_QUIET = 1 << 1, +// FLAG_REVERSE = 1 << 2, +// } t_flags; + +typedef char *(*t_func_hash)(char *message); + +/* +** error.c +*/ + +// void error_command(char *command); + +/* +** args.c +*/ + +// int parse_args(char *name, int argc, char **argv, t_func_hash func_hash); + +#endif -- cgit