mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
17 lines
331 B
C
17 lines
331 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <storage/storage.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
bool md5_calc_file(File* file, const char* path, unsigned char output[16], FS_Error* file_error);
|
||
|
|
||
|
bool md5_string_calc_file(File* file, const char* path, FuriString* output, FS_Error* file_error);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|