Flowsy.Security.Abstractions 1.0.1

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

// Install Flowsy.Security.Abstractions as a Cake Tool
#tool nuget:?package=Flowsy.Security.Abstractions&version=1.0.1

Flowsy Security Abstractions

Foundation security abstractions for .NET applications.

Hashing

IHasher

This interface includes methods intended to get a hashed representation as a string from a given integer or long value. In the other hand, the IHasher interface includes methods to decode an integer or long value from a given string.

A common scenario where this feature can come in handy is when we need to hide our database primary key values. We can hash our values via some object mapper in our application layer before they are sent to the client. This way, the user can perform requests without any knowledge of the actual database values using the hashed representation instead. We only need to decode the integer or long value in our application layer before hitting our database.

public interface IHasher
{
    string Encode(int number);
    string Encode(long number);
    int DecodeInt(string hash);
    long DecodeLong(string hash);
    bool IsEncodedInt(string hash);
    bool IsEncodedLong(string hash);
    bool TryDecodeInt(string hash, out int number);
    bool TryDecodeLong(string hash, out long number);
}
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 was computed.  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 was computed.  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.
  • net6.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Flowsy.Security.Abstractions:

Package Downloads
Flowsy.Security

Foundation security components for .NET applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 399 3/1/2023
1.0.0 192 3/1/2023