UtilPack.Cryptography.Digest
2.0.0
dotnet add package UtilPack.Cryptography.Digest --version 2.0.0
NuGet\Install-Package UtilPack.Cryptography.Digest -Version 2.0.0
<PackageReference Include="UtilPack.Cryptography.Digest" Version="2.0.0" />
paket add UtilPack.Cryptography.Digest --version 2.0.0
#r "nuget: UtilPack.Cryptography.Digest, 2.0.0"
// Install UtilPack.Cryptography.Digest as a Cake Addin
#addin nuget:?package=UtilPack.Cryptography.Digest&version=2.0.0
// Install UtilPack.Cryptography.Digest as a Cake Tool
#tool nuget:?package=UtilPack.Cryptography.Digest&version=2.0.0
UtilPack.Cryptography.Digest
This project extends the UtilPack.Cryptography project and provides implementation for most common cryptograhpic digest algorithms: MD5, SHA128, SHA256, and SHA512.
All of those algorithms are generated by this T4 file, since they are all similar block digest algorithms.
This similarness is also evident by the fact that all of those classes implement BlockDigestAlgorithm
interface provided by this project.
This interface can be implemented by other libraries as well.
The DigestBasedRandomGenerator
provides concrete implementation for RandomGenerator
interface in UtilPack.Cryptography, using the given BlockDigestAlgorithm
interface to generate random data.
The DigestBasedRandomGenerator
is not safe to use concurrently - it has state that it modifies during the calls to methods in such way that concurrent calls would most likely cause errors or erroneous data.
Distribution
See NuGet package for binary distribution.
TODO
Need to write the BlockDigestAlgorithm
which uses the .NET native algorithms (if they are available) instead of completely managed current implementations of MD5/SHA*.
Also need to add more digest algorithms (SHA3, BLAKE2).
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.0 netstandard1.1 netstandard1.2 netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Windows Phone | wp8 wp81 wpa81 |
Windows Store | netcore netcore45 netcore451 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.0
- UtilPack.Cryptography (>= 1.2.0)
-
.NETFramework 4.5
- UtilPack.Cryptography (>= 1.2.0)
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
- UtilPack.Cryptography (>= 1.2.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on UtilPack.Cryptography.Digest:
Package | Downloads |
---|---|
UtilPack.Cryptography.SASL.SCRAM
Provides ability to create objects implementing SASLMechanism of UtilPack.Cryptograhy.SASL that handle the SCRAM mechanism of SASL. No strings are allocated during challenge. Both client-side and server-side mechanisms are provided. |
|
Backend.HTTP.Common.Skeletons
Contains skeleton implementation for types defined in Backend.Core and Backend.HTTP.Common packages. |
|
Backend.HTTP.Common.DigestTransformer
Contains class implementing StringTransformer interface from Backend.HTTP.Common package, which uses cryptographic digests (e.g. SHA512) to transform strings. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Binary-incompatible API changes: BlockDigestAlgorithm interface now extends DigestAlgorithm interface. Also added utility method to shuffle binary encoding characters (e.g. base64) using DigestBasedRandomGenerator seeded with given seed material.