kernel/inc/utils/crypto/sha1.h

11 lines
245 B
C
Raw Normal View History

2023-05-26 19:24:23 +00:00
// This file is part of noxos and licensed under the MIT open source license
#ifndef NOXOS_SHA1_H
#define NOXOS_SHA1_H
#include <utils/stdtypes.h>
int sha1_hash(uint8_t *digest, const uint8_t* data, uint64_t len_data);
#endif //NOXOS_SHA1_H