Jezda.Common.Helpers 1.1.0

dotnet add package Jezda.Common.Helpers --version 1.1.0
                    
NuGet\Install-Package Jezda.Common.Helpers -Version 1.1.0
                    
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="Jezda.Common.Helpers" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jezda.Common.Helpers" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Jezda.Common.Helpers" />
                    
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 Jezda.Common.Helpers --version 1.1.0
                    
#r "nuget: Jezda.Common.Helpers, 1.1.0"
                    
#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 Jezda.Common.Helpers@1.1.0
                    
#: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=Jezda.Common.Helpers&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Jezda.Common.Helpers&version=1.1.0
                    
Install as a Cake Tool

Jezda.Common.Helpers

Utility classes and helper implementations for common tasks including encryption, string manipulation, date/time handling, and more.

📦 Installation

dotnet add package Jezda.Common.Helpers

🎯 What's Included

Helper Classes

  • EncryptionHelper - Encryption and decryption utilities
  • StringHelper - String manipulation and validation
  • DateTimeOffsetHelper - DateTimeOffset utilities and conversions
  • CurrencyCodeHelper - Currency code validation and utilities
  • DisplayMasker - Masking sensitive data for display (e.g., credit cards, emails)
  • PermissionHelper - Permission and authorization helpers
  • Identity utilities - User identity and authentication helpers

💡 Quick Examples

// Encryption
var encrypted = EncryptionHelper.Encrypt("sensitive data");
var decrypted = EncryptionHelper.Decrypt(encrypted);

// String masking
var maskedEmail = DisplayMasker.MaskEmail("user@example.com");
// Output: u***@example.com

var maskedCard = DisplayMasker.MaskCreditCard("1234567890123456");
// Output: ************3456

// Date/time utilities
var utcNow = DateTimeOffsetHelper.GetUtcNow();

// Currency validation
bool isValid = CurrencyCodeHelper.IsValidCode("USD");

// String helpers
var slug = StringHelper.ToSlug("Hello World!");
// Output: hello-world

🔗 Dependencies

  • Microsoft.Extensions.Identity.Core 9.0.8 - Identity framework support
  • Jezda.Common.Abstractions - Common interfaces
  • Jezda.Common.Domain - Domain models

📚 Documentation

For complete documentation, see the main repository README.

📄 License

MIT License - see LICENSE for details.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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.

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.1.0 139 7/5/2026
1.0.38 160 5/11/2026
1.0.37 612 3/12/2026
1.0.36 114 3/8/2026
1.0.35 240 2/17/2026
1.0.34 465 11/27/2025
1.0.33 310 11/24/2025
1.0.32 219 11/23/2025
1.0.31 248 11/7/2025
1.0.30 247 10/31/2025
1.0.29 269 10/27/2025
1.0.28 233 10/23/2025
1.0.27 188 10/17/2025
1.0.26 220 10/16/2025
1.0.25 239 10/15/2025
1.0.24 226 10/14/2025
1.0.23 222 10/14/2025
1.0.22 223 10/2/2025
1.0.21 229 9/11/2025
1.0.20 216 9/11/2025
Loading failed