Mythosia.Integrity 1.2.0

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

// Install Mythosia.Integrity as a Cake Tool
#tool nuget:?package=Mythosia.Integrity&version=1.2.0

HashAlgorithm is moved Mythosia.Security.Cryptography namespace. Please download Mythosia.Security.Cryptography to use it.

CRC

Please see https://www.lammertbies.nl/comm/info/crc-calculation?crc=8005&method=hex https://crccalc.com/

using Mythosia;
using Mythosia.Integrity;

var data = "123456789".ToASCIIArray();

// Example for CRC 8
var crc = data.CRC8();
var dataWithCRC = data.WithCRC8();

// Example for CRC 8 MAXIM
var crc = data.CRC8(CRC8Type.Maxim);
var dataWithCRC = data.WithCRC8(CRC8Type.Maxim);


// Example for CRC 16
var crc = data.CRC16();
var dataWithCRC = data.WithCRC16();

// Example for CRC 16 (modbus)
var crc = data.CRC16(CRC16Type.Modbus);
var dataWithCRC = data.WithCRC16(CRC16Type.Modbus);

// Example for CRC 16 CCITT (xModem)
var crc = data.CRC16(CRC16Type.CCITTxModem);
var dataWithCRC = data.WithCRC16(CRC16Type.CCITTxModem);

// Example for CRC 16 DNP
var crc = data.CRC16(CRC16Type.DNP);
var dataWithCRC = data.WithCRC16(CRC16Type.DNP);

// Example for CRC 32
var crc = data.CRC32();
var dataWithCRC = data.WithCRC32();

Checksum

Please see https://www.scadacore.com/tools/programming-calculators/online-checksum-calculator/

using Mythosia;
using Mythosia.Integrity;

var data = "123456789".ToASCIIArray();

// Example for Checksum8
var checksum = data.CheckSum8(CheckSum8Type.Xor);
var dataWithChecksum = data.WithCheckSum8(CheckSum8Type.Xor);

var checksum = data.CheckSum8(CheckSum8Type.Modulo256);
var dataWithChecksum = data.WithCheckSum8(CheckSum8Type.Modulo256);

var checksum = data.CheckSum8(CheckSum8Type.TwosComplement);
var dataWithChecksum = data.WithCheckSum8(CheckSum8Type.TwosComplement);

var checksum = data.CheckSum8(CheckSum8Type.NMEA);
var dataWithChecksum = data.WithCheckSum8(CheckSum8Type.NMEA);

Application

if you want to use the polymorphism, you can use is as below.

using Mythosia;
using Mythosia.Integrity;

var content = "123456789".ToASCIIArray();

ErrorDetection errDetection = new Checksum8();
var checksum = errDetection.Compute(content);
var encodeData = errDetection.Encode(content);			// encodeData is content + checksum
var decodeData = errDetection.Decode(encodeData);		// decodeData is equal with content

errDetection = new Checksum8(Checksum8Type.Modulo256);	// change to the modulo256 checksum
checksum = errDetection.Compute();
var encodeData = errDetection.Encode(content);			// encodeData is content + checksum
var decodeData = errDetection.Decode(encodeData);		// decodeData is equal with content

errDetection = new CRC8();							// change to the CRC8
var crc = errDetection.Compute();
var encodeData = errDetection.Encode(content);			// encodeData is content + crc
var decodeData = errDetection.Decode(encodeData);		// decodeData is equal with content

errDetection = new CRC16();							// change to the CRC16
crc = errDetection.Compute();
var encodeData = errDetection.Encode(content);			// encodeData is content + crc
var decodeData = errDetection.Decode(encodeData);		// decodeData is equal with content

errDetection = new CRC32();							// change to the CRC32
crc = errDetection.Compute();
var encodeData = errDetection.Encode(content);			// encodeData is content + crc
var decodeData = errDetection.Decode(encodeData);		// decodeData is equal with content

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.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. 
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.2.0 365 8/13/2023
1.1.1 139 6/25/2023
1.1.0 132 6/24/2023
1.0.0 123 6/19/2023