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,24 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* sip_utils.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maix <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/10 19:34:10 by maix #+# #+# */
/* Updated: 2023/12/27 16:48:51 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef SIP_UTILS_H
# define SIP_UTILS_H
# include "me/hash/sip.h"
# include "me/types.h"
void compress(t_sip_state *state);
t_sip_state create_state_with_key(t_u64 k0, t_u64 k1);
t_u64 sip13_finish(t_sip13 *hasher);
t_u64 sip13_reset_and_finish(t_sip13 *hasher);
void sip13_write_bytes(t_sip13 *self, t_u8 *msg, t_usize count);
#endif