Flowsy.Security.Abstractions
1.0.2
dotnet add package Flowsy.Security.Abstractions --version 1.0.2
NuGet\Install-Package Flowsy.Security.Abstractions -Version 1.0.2
<PackageReference Include="Flowsy.Security.Abstractions" Version="1.0.2" />
paket add Flowsy.Security.Abstractions --version 1.0.2
#r "nuget: Flowsy.Security.Abstractions, 1.0.2"
// Install Flowsy.Security.Abstractions as a Cake Addin #addin nuget:?package=Flowsy.Security.Abstractions&version=1.0.2 // Install Flowsy.Security.Abstractions as a Cake Tool #tool nuget:?package=Flowsy.Security.Abstractions&version=1.0.2
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- 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.