diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-11 10:01:11 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-11 10:01:11 +0200 |
| commit | 4bc2a20e699812c397e0d9e3901d91196d8681f0 (patch) | |
| tree | 0a00c7d47236cacf21413f58341bec6c0ec97455 /EFSKit | |
| parent | 25c6f11de8d859d2aab49848cfc2c2d9a7f33153 (diff) | |
[newoskrnl.dll] Fixes and improvements, mostly on New FS and User Security support.
[encryptfs.dll] Add new DLL for filesystem encryption.
[sci.dll] Add protocols for IDL parsing.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'EFSKit')
| -rw-r--r-- | EFSKit/EncryptFS.hxx | 22 | ||||
| -rw-r--r-- | EFSKit/build.json | 10 |
2 files changed, 32 insertions, 0 deletions
diff --git a/EFSKit/EncryptFS.hxx b/EFSKit/EncryptFS.hxx new file mode 100644 index 00000000..9462e755 --- /dev/null +++ b/EFSKit/EncryptFS.hxx @@ -0,0 +1,22 @@ +/* -------------------------------------------
+
+ Copyright ZKA Technologies
+
+ File: Encrypt.hxx
+ Purpose: Encrypted File System
+
+ Revision History:
+
+ 8/8/2024: Added file (amlel)
+
+------------------------------------------- */
+
+#pragma once
+
+#include <FSKit/NewFS.hxx>
+
+/// @brief EncryptFS NewFS extension for data protection.
+
+#define EFSKIT_VERSION 0x0100
+
+struct EFS_ENCRYPT_BLOCK;
diff --git a/EFSKit/build.json b/EFSKit/build.json new file mode 100644 index 00000000..248f97c0 --- /dev/null +++ b/EFSKit/build.json @@ -0,0 +1,10 @@ +{
+ "compiler_path": "x86_64-w64-mingw32-g++",
+ "compiler_std": "c++20",
+ "headers_path": ["../", "./"],
+ "sources_path": ["*.cxx"],
+ "output_name": "encryptfs.dll",
+ "compiler_flags": ["-ffreestanding", "-shared", "-fno-rtti", "-fno-exceptions", " -Wl,--subsystem=17"],
+ "cpp_macros": ["__CRT_AMD64__", "cEFSVersion=0x0100", "cEFSVersionHighest=0x0100", "cEFSVersionLowest=0x0100"]
+ }
+
\ No newline at end of file |
