Chapter.Net.Security 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Chapter.Net.Security --version 1.0.0                
NuGet\Install-Package Chapter.Net.Security -Version 1.0.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="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Chapter.Net.Security --version 1.0.0                
#r "nuget: Chapter.Net.Security, 1.0.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.
// Install Chapter.Net.Security as a Cake Addin
#addin nuget:?package=Chapter.Net.Security&version=1.0.0

// Install Chapter.Net.Security as a Cake Tool
#tool nuget:?package=Chapter.Net.Security&version=1.0.0                

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

  1. Installation:

    • Install the Chapter.Net.Security library via NuGet Package Manager:
    dotnet add package Chapter.Net.Security
    
  2. 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;
        }
    }
    
  3. 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);
    }
    
  4. 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;
        }
    }
    

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 Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
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
2.0.0 79 6/7/2024
1.1.0 157 4/1/2024
1.0.0 371 12/23/2023