BogaNet.ObfuscatedType
0.9.4
See the version list below for details.
dotnet add package BogaNet.ObfuscatedType --version 0.9.4
NuGet\Install-Package BogaNet.ObfuscatedType -Version 0.9.4
<PackageReference Include="BogaNet.ObfuscatedType" Version="0.9.4" />
paket add BogaNet.ObfuscatedType --version 0.9.4
#r "nuget: BogaNet.ObfuscatedType, 0.9.4"
// Install BogaNet.ObfuscatedType as a Cake Addin #addin nuget:?package=BogaNet.ObfuscatedType&version=0.9.4 // Install BogaNet.ObfuscatedType as a Cake Tool #tool nuget:?package=BogaNet.ObfuscatedType&version=0.9.4
BogaNet.ObfuscatedType
Obfuscated types for all value types and strings. This types prevent the values from being "plain" in memory and offers some protection against bad actors (like memory scanners and searchers).
Important note
This types are fast and lightweight, but not cryptographically secure! Use it for less sensitive data, like:
- Username
- First and last names
- Email addresses
- Mailing addresses
- Phone numbers
- Social media profile names
- Highscores
For sensitive data, like passwords etc., it is strongly recommended to use BogaNet.SecureType instead.
Main classes and example code
Obfuscated types for:
DoubleObf age = 35.8;
double years = 7;
age += years;
Console.WriteLine(age.ToString());
StringObf text = "Hello Wörld!";
string frag = " byebye!";
text += frag;
Console.WriteLine(text);
Nuget:
API:
https://www.crosstales.com/media/data/BogaNet/api/
GitHub:
Product | Versions 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. |
-
net8.0
- BogaNet.Common (>= 1.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on BogaNet.ObfuscatedType:
Package | Downloads |
---|---|
BogaNet.Prefs
Handles preferences for C# applications. It supports all values types, strings, DateTime and object. |
|
BogaNet.SecureType
AES encrypted types for all value types, strings and objects. This types prevent the values from being "plain" in memory and offers high protection against bad actors (like memory scanners and searchers). |
GitHub repositories
This package is not used by any popular GitHub repositories.
Logo updated.