1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#ifndef _TSK_ENCRYPTION_H
#define _TSK_ENCRYPTION_H
#include "tsk/img/tsk_img_i.h"
#include "tsk_fs_i.h"
#ifdef __cplusplus
extern "C" {
#endif
int handleVolumeEncryption(TSK_FS_INFO* a_fs_info, const char* a_pass);
void tsk_fs_get_encryption_description(TSK_FS_INFO* a_fs_info, char* a_desc, size_t a_descLen);
#ifdef HAVE_LIBMBEDTLS
ssize_t read_and_decrypt_bitlocker_blocks(TSK_FS_INFO* a_fs_info, TSK_DADDR_T start, size_t len, void* data);
#endif
void freeEncryptionData(TSK_FS_INFO* a_fs_info);
#ifdef __cplusplus
}
#endif
#endif
|