aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/crypto.h
blob: 16cdf867dccefa1565ec9c29223c362d693ecc72 (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]) NONNULL;
u32 crc32(u32 crc, const void *buf, u32 size) NONNULL;

#endif