aboutsummaryrefslogtreecommitdiff
path: root/inc/ft_ssl_md5.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-01 19:32:51 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-01 19:32:51 +0200
commitcbd3905f01dcc1e884d778be9437012b93fe317a (patch)
treec681a209fcce9d895cb646c7248d9feeb7d00274 /inc/ft_ssl_md5.h
parentc86a27cca36c4bcc5439f17c673d2029ef5038c5 (diff)
downloadft_ssl-cbd3905f01dcc1e884d778be9437012b93fe317a.tar.gz
ft_ssl-cbd3905f01dcc1e884d778be9437012b93fe317a.tar.bz2
ft_ssl-cbd3905f01dcc1e884d778be9437012b93fe317a.zip
Refactoring md5 to generalize message digest
Diffstat (limited to 'inc/ft_ssl_md5.h')
-rw-r--r--inc/ft_ssl_md5.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/inc/ft_ssl_md5.h b/inc/ft_ssl_md5.h
deleted file mode 100644
index 22d0845..0000000
--- a/inc/ft_ssl_md5.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* 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