Started from buttom go to the sky

This commit is contained in:
Raphaël 2024-04-28 19:59:01 +02:00
parent 96215449bd
commit f811e55dea
4781 changed files with 10121 additions and 1743 deletions

View file

@ -0,0 +1,31 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* sip13.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/10 19:32:28 by maiboyer #+# #+# */
/* Updated: 2023/12/27 16:48:13 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
#include "me/hash/sip.h"
#include "me/hash/sip/sip_utils.h"
#include "me/mem/mem_alloc.h"
t_hasher hasher_sip13_new(void)
{
t_hasher out;
t_sip13 *inner;
inner = mem_alloc(sizeof(t_sip13));
inner->state = create_state_with_key(0, 0);
inner->k0 = 0;
inner->k1 = 0;
out.hasher = inner;
out.hash_bytes = (t_hash_bytes)sip13_write_bytes;
out.finish = (t_hasher_finish)sip13_finish;
out.reset_and_finish = (t_hasher_reset_and_finish)sip13_reset_and_finish;
return (out);
}