aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/crypto.h
blob: b672c505ef433858dc1d44e9708bedf44e008132 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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;

#ifdef KERNEL
u32 crc32_user(u32 crc, const void *buf, u32 size) NONNULL;
#endif

#endif