Chapter.Net.Security
2.1.0
Prefix Reserved
dotnet add package Chapter.Net.Security --version 2.1.0
NuGet\Install-Package Chapter.Net.Security -Version 2.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="Chapter.Net.Security" Version="2.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Chapter.Net.Security" Version="2.1.0" />
<PackageReference Include="Chapter.Net.Security" />
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 Chapter.Net.Security --version 2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Chapter.Net.Security, 2.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 Chapter.Net.Security@2.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=Chapter.Net.Security&version=2.1.0
#tool nuget:?package=Chapter.Net.Security&version=2.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
<img src="https://raw.githubusercontent.com/dwndland/Chapter.Net.Security/master/Icon.png" alt="logo" width="64"/>
Chapter.Net.Security Library
Overview
Chapter.Net.Security provides ways to secure data and strings.
Features
- Hshing: Generates salts and hashes data on multiple ways.
- XML Signing: Signs and verifies XML structures with a given key.
- Tokening: Generates token to verify communications and more.
Getting Started
Installation:
- Install the Chapter.Net.Security library via NuGet Package Manager:
dotnet add package Chapter.Net.Security
Hashing:
- Usage
public void ViewModel : ObservableObject { public IHashing _hashing; public ViewModel(IHashing hashing) { _hashing = hashing; } public string SavePassword(string userName, string password) { var data = _hashing.GenerateSecureHash(password); using var userRepo = Context.GetRepo<UserRepository>(); var entity = userRepo.GetUser(userName); entity.Password = data.Value; entity.Salt = data.Salt; userRepo.SubmitChanges(); } public bool ValidatePassword(string userName, string password) { using var userRepo = Context.GetRepo<UserRepository>(); var entity = userRepo.GetUser(userName); var hashedPassword = _hashing.GenerateSecureHash(password, entity.Salt); return hashedPassword == entity.Password; } }
XML Signing:
- Write an XML file signed
private void WriteSignedData(Data data, string filePath) { var options = new SignedXmlOptions { Algo = GetKey(), WriteIndented = true }; var writer = new SignedXmlWriter(options); writer.Write(data, filePath); } private AsymmetricAlgorithm GetKey() { // The key used for write, must be used for read. var keyString = "<RSAKeyValue><Modulus>xo6kQb......"; var key = new RSACryptoServiceProvider(); key.FromXmlString(keyString); }
- Read and Verify an signed XML file
private Data ReadSignedFile(string filePath) { var options = new SignedXmlOptions { Algo = GetKey(), AllowReadInvalid = true }; var reader = new SignedXmlReader(options); reader.ReadFile(filePath, out Data data); return data; } private AsymmetricAlgorithm GetKey() { // The key used for write, must be used for read. var keyString = "<RSAKeyValue><Modulus>xo6kQb......"; var key = new RSACryptoServiceProvider(); key.FromXmlString(keyString); }
Tokening:
- Usage
public void ViewModel : ObservableObject { public ITokenGenerator _tokenGenerator; public ViewModel(ITokenGenerator tokenGenerator) { _tokenGenerator = tokenGenerator; } public string GetNewToken(string userName) { using var userRepo = Context.GetRepo<UserRepository>(); var entity = userRepo.GetUser(userName); return entity.IsActive() ? _tokenGenerator.Generate(64) : null; } }
Links
License
Copyright (c) David Wendland. All rights reserved. Licensed under the MIT License. See LICENSE file in the project root for full license information.
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. net9.0 is compatible. 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
- System.Security.Cryptography.Xml (>= 9.0.0)
-
net9.0
- System.Security.Cryptography.Xml (>= 9.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.