aboutsummaryrefslogtreecommitdiff
path: root/inc/ft_ssl_md5.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 21:39:44 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 21:39:44 +0200
commit2e47298639b3e4971e2a7b35d50b57340276435b (patch)
tree63d3b3601df765781d61504d45c7b1d2480f356c /inc/ft_ssl_md5.h
parentda4069d389ed0ca56a17da29b9e967bc2acb0dad (diff)
downloadft_ssl-2e47298639b3e4971e2a7b35d50b57340276435b.tar.gz
ft_ssl-2e47298639b3e4971e2a7b35d50b57340276435b.tar.bz2
ft_ssl-2e47298639b3e4971e2a7b35d50b57340276435b.zip
Disabling previous work temporarily to focus on the algorithm
Diffstat (limited to 'inc/ft_ssl_md5.h')
-rw-r--r--inc/ft_ssl_md5.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/inc/ft_ssl_md5.h b/inc/ft_ssl_md5.h
new file mode 100644
index 0000000..22d0845
--- /dev/null
+++ b/inc/ft_ssl_md5.h
@@ -0,0 +1,25 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_ssl_md5.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/22 07:14:45 by cacharle #+# #+# */
+/* Updated: 2020/07/27 16:36:41 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+#include <stdio.h>
+
+#ifndef FT_SSL_MD5_H
+# define FT_SSL_MD5_H
+
+# include <stdlib.h>
+# include <stdint.h>
+# include <stddef.h>
+
+# include "libft.h"
+
+char *message_digest_md5(uint8_t *msg, size_t size);
+
+#endif