pvWay.Crypto.Fw 1.0.0

dotnet add package pvWay.Crypto.Fw --version 1.0.0
NuGet\Install-Package pvWay.Crypto.Fw -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="pvWay.Crypto.Fw" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add pvWay.Crypto.Fw --version 1.0.0
#r "nuget: pvWay.Crypto.Fw, 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 pvWay.Crypto.Fw as a Cake Addin
#addin nuget:?package=pvWay.Crypto.Fw&version=1.0.0

// Install pvWay.Crypto.Fw as a Cake Tool
#tool nuget:?package=pvWay.Crypto.Fw&version=1.0.0

Crypto Fw

Tiny utilily encrypting/decrypting texts/objects to/from base64 strings

Interfaces

This nuGet has only one public class implementing the following interface

ICrypto

using System;
using System.Threading.Tasks;

namespace pvWay.Crypto.Fw
{
    public interface ICrypto: IDisposable
    {
        Task<string> EncryptAsync(string text);
        Task<string> EncryptAsync<T>(T data) where T: class;
        Task<string> EncryptEphemeralAsync(string text, TimeSpan? validity = null);
        Task<string> EncryptEphemeralAsync<T>(T data, TimeSpan? validity = null) where T : class;
        
        Task<string> DecryptAsync(string base64String);
        Task<T> DecryptAsync<T>(string base64String) where T: class;
        Task<T> DecryptEphemeralAsync<T>(string b64Str);
    }
}

Usage

See here after a short Console that uses the crypto service

The code

using System;
using System.Threading.Tasks;
using pvWay.Crypto.Fw;

namespace CryptoFwConsole
{
    internal static class Program
    {
        private const string InitializationVectorString = "0123456789ABCDEF";
        private const string KeyString = "123456789 123456789 123456789 12";

        private static async Task Main(/*string[] args*/)
        {
            var crypto = new Crypto(
                KeyString,
                InitializationVectorString,
                TimeSpan.FromSeconds(10));

            var b64 = await crypto.EncryptAsync("test");
            Console.WriteLine(b64);
            var text = await crypto.DecryptAsync(b64);
            Console.WriteLine(text);

            var mc = new MyClass
            {
                TheHeader = "header",
                TheBody = "Body",
                TheFooter = "Footer"
            };

            b64 = await crypto.EncryptAsync(mc);
            Console.WriteLine(b64);
            var mcBack = await crypto.DecryptAsync<MyClass>(b64);
            Console.WriteLine(mcBack.TheHeader);
            Console.WriteLine(mcBack.TheBody);
            Console.WriteLine(mcBack.TheFooter);

            b64 = await crypto.EncryptEphemeralAsync(
                mc, TimeSpan.FromSeconds(15));
            mcBack = await crypto.DecryptEphemeralAsync<MyClass>(b64);
            Console.WriteLine(mcBack.TheBody + "is still valid");

            Console.ReadLine();
        }

        private class MyClass
        {
            public string TheHeader { get; set; }
            public string TheBody { get; set; }
            public string TheFooter { get; set; }
        }

    }
}

Happy coding

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 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.0.0 228 1/25/2022

initial version for dotNet framework