Mortex.Core.Integrity 1.0.3

dotnet add package Mortex.Core.Integrity --version 1.0.3
                    
NuGet\Install-Package Mortex.Core.Integrity -Version 1.0.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Mortex.Core.Integrity" Version="1.0.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Mortex.Core.Integrity" Version="1.0.3" />
                    
Directory.Packages.props
<PackageReference Include="Mortex.Core.Integrity" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Mortex.Core.Integrity --version 1.0.3
                    
#r "nuget: Mortex.Core.Integrity, 1.0.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Mortex.Core.Integrity@1.0.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Mortex.Core.Integrity&version=1.0.3
                    
Install as a Cake Addin
#tool nuget:?package=Mortex.Core.Integrity&version=1.0.3
                    
Install as a Cake Tool

🛡️ MORTEX Core: Cryptographic Mirage Engine

"The only truly secure system is the one you build yourself."
MORTEX is a manifesto against black-box security tools. It provides a pure, dependency-free foundation for developers who demand absolute control over their data integrity.


👁️ What is the Mirage Protocol?

Standard encryption creates high-entropy data blocks that scream "I am a secret!" to antivirus heuristics and automated scanners. MORTEX changes the game.

The Mirage Protocol wraps your sensitive data inside a camouflaged envelope that mimics standard Windows System Event Logs.

  • To an Antivirus: It looks like a benign "Service Control Manager" or "Kernel-General" log entry.
  • To a Human Analyst: It appears as standard system noise/logs, reducing the curiosity factor.
  • To the Engine: It is a valid, integrity-checked payload waiting to be resolved.

This is not just encryption; it is steganographic obfuscation designed to hide the existence of the secret, not just its content.


🚀 Key Features

  • 📦 Zero-Dependency Architecture: No third-party DLLs. No supply chain risks. Just pure, native C# logic.
  • 🛡️ Hardened Runtime: Critical methods (Protect, Resolve, InternalXor) are decorated with [MethodImpl(NoOptimization)] to resist JIT inlining and complicate decompiler analysis.
  • 👻 Stealth Metadata: The library minimizes its footprint, using generic naming conventions internally to blend into enterprise environments.
  • ⚡ High-Performance XOR: Includes a custom, noise-augmented XOR transformation layer for speed and obfuscation.

💻 Quick Start

Installation

dotnet add package Mortex.Core.Integrity

Usage

1. Paranoid Mode (Mirage Protocol)
This mode wraps the data in fake Windows Event Logs.

using Mortex.Core;

string secret = "Database_Connection_String_Value";

// PROTECT: Wraps in Windows Event Log camouflage
// Result looks like: "Log Name: System... Source: Service Control Manager..."
string mirageLog = MortexEngine.Protect(secret, TransformMode.Xor, profile: "paranoid");

// RESOLVE: Extracts the payload from the noise
string original = MortexEngine.Resolve(mirageLog);

2. Standard Mode (High Performance)
Standard Base64 or XOR wrapping for internal data transfer.

// Fast encoding with integrity signature
string protectedData = MortexEngine.Protect("User_Password", TransformMode.Base64);

// Verify and Resolve
if (MortexEngine.VerifySignature(protectedData))
{
    string clearText = MortexEngine.Resolve(protectedData);
}

🏛️ Architect's Note

In an era of compromised supply chains and "free" security tools that harvest data, reliance is a vulnerability. MORTEX was built to prove that a single developer, armed with pure logic and no dependencies, can build a fortress.

This library is not designed to replace AES-256 for banking transactions; it is designed to obfuscate configuration secrets, internal tokens, and logic flags from prying eyes and automated scrapers.

Built by: isinmelih
Organization: MORTEX Global Integrity Systems


🏗️ Architect's Manifesto / Mimarın Manifestosu

EN: Security is not something you can buy or download from the internet. Most public tools and libraries are riddled with backdoors or hidden vulnerabilities. The only truly secure system is the one you build yourself, line by line, understanding every byte. MORTEX is a tool for digital sovereignty. Remember: building the application yourself is always better than risking infection from unknown sources. Don't be a victim of convenience; be the architect of your own fortress.

TR: Güvenlik, internetten satın alabileceğiniz veya indirebileceğiniz bir meta değildir. İnternetteki çoğu araç ve kütüphane arka kapılarla veya gizli zafiyetlerle doludur. Gerçekten güvenli olan tek sistem; her satırına hakim olduğunuz, her baytını anlayarak kendi ellerinizle inşa ettiğiniz sistemdir. MORTEX, dijital egemenliğinizi kurmanız için bir araçtır. Unutmayın: Uygulamayı bizzat yapmak, kaynağı belirsiz yazılımlarla virüs kapma riskinden her zaman daha iyidir. Kolaylığın kurbanı olmayın; kendi kalenizin mimarı olun.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 109 2/15/2026
1.0.2 96 2/15/2026
1.0.1 96 2/15/2026
1.0.0 102 2/15/2026