File: encryptionHelper.h

package info (click to toggle)
sleuthkit 4.14.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,268 kB
  • sloc: ansic: 143,839; cpp: 54,644; java: 39,009; xml: 2,417; python: 1,085; perl: 874; makefile: 451; sh: 196
file content (22 lines) | stat: -rw-r--r-- 544 bytes parent folder | download
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