aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/crypto.h
blob: bbe8d7efef69d110969576d61ab2493308d9dc93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// MIT License, Copyright (c) 2021 Marvin Borner

#ifndef CRYPTO_H
#define CRYPTO_H

#include <def.h>

void md5(const void *initial_msg, u32 initial_len, u8 digest[16]);
u32 crc32(u32 crc, const void *buf, u32 size);

#endif