Poly1305.NetCore 1.0.0

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

// Install Poly1305.NetCore as a Cake Tool
#tool nuget:?package=Poly1305.NetCore&version=1.0.0

Poly1305.NetCore

License: MIT nuget

Implementation of poly1305-dona message authentication code, designed by D. J. Bernstein. Optimized for PinnedMemory.

Install

From a command prompt

dotnet add package Poly1305.NetCore
Install-Package Poly1305.NetCore

You can also search for package via your nuget ui / website:

https://www.nuget.org/packages/Poly1305.NetCore/

Examples

You can find more examples in the github examples project.

using var poly = new Poly1305(new PinnedMemory<byte>(new byte[] {63, 61, 77, 20, 63, 61, 77}, false));
using var hash = new PinnedMemory<byte>(new byte[digest.GetLength()]);
digest.UpdateBlock(new PinnedMemory<byte>(new byte[] {63, 61, 77, 20, 63, 61, 77, 20, 63, 61, 77}, false), 0, 11);
digest.DoFinal(hash, 0);

Constructor

Poly1305(PinnedMemory<byte> key)

Methods

Set key for digest, this is typically only used if the key changes after construction.

void SetKey(PinnedMemory<byte> key)

Get the message digest output length.

int GetLength()

Update the message digest with a single byte.

void Update(byte input)

Update the message digest with a pinned memory byte array.

void UpdateBlock(PinnedMemory<byte> input, int inOff, int len)

Update the message digest with a byte array.

void UpdateBlock(byte[] input, int inOff, int len)

Produce the final digest value outputting to pinned memory. Key & salt remain until dispose is called.

void DoFinal(PinnedMemory<byte> output, int outOff)

Reset the digest back to it's initial state for further processing. Key & salt remain until dispose is called.

void Reset()

Clear key & salt, reset digest back to it's initial state.

void Dispose()
Product 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.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Poly1305.NetCore:

Package Downloads
AeadChaCha20Poly1305.NetCore

Implementation of AEAD_CHACHA20_POLY1305 an authenticated encryption with additional data algorithm using ChaCha20, and Poly1305 designed by D. J. Bernstein. Optimized for PinnedMemory, and .NET core.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 640 7/20/2020