System.IO.Hashing 11.0.0-preview.5.26302.115
About
System.IO.Hashing offers a variety of hash code algorithms.
Hash code algorithms are pivotal for generating unique values for objects based on their content, facilitating object comparisons, and detecting content alterations. The namespace encompasses algorithms like CRC-32, CRC-64, xxHash3, xxHash32, xxHash64, and xxHash128, all engineered for swift and efficient hash code generation, with xxHash being an "Extremely fast hash algorithm".
Warning: The hash functions provided by System.IO.Hashing are not suitable for security purposes such as handling passwords or verifying untrusted content. For such security-critical applications, consider using cryptographic hash functions provided by the System.Security.Cryptography namespace.
Key Features
- Variety of hash code algorithms including CRC-32, CRC-64, xxHash3, xxHash32, xxHash64, and xxHash128.
- Implementations of CRC-32 and CRC-64 algorithms, as used in IEEE 802.3, and described in ECMA-182, Annex B respectively.
- Implementations of XxHash32 for generating 32-bit hashes, XxHash3 and XxHash64 for generating 64-bit hashes, and xxHash128 for generating 128-bit hashes.
How to Use
Creating hash codes is straightforward.
Call the Hash method with the content to be hashed.
Here is a practical example:
using System;
using System.IO.Hashing;
byte[] data = new byte[] { 1, 2, 3, 4 };
byte[] crc32Value = Crc32.Hash(data);
Console.WriteLine($"CRC-32 Hash: {BitConverter.ToString(crc32Value)}");
// CRC-32 Hash: CD-FB-3C-B6
byte[] crc64Value = Crc64.Hash(data);
Console.WriteLine($"CRC-64 Hash: {BitConverter.ToString(crc64Value)}");
// CRC-64 Hash: 58-8D-5A-D4-2A-70-1D-B2
byte[] xxHash3Value = XxHash3.Hash(data);
Console.WriteLine($"XxHash3 Hash: {BitConverter.ToString(xxHash3Value)}");
// XxHash3 Hash: 98-8B-7B-90-33-AC-46-22
byte[] xxHash32Value = XxHash32.Hash(data);
Console.WriteLine($"XxHash32 Hash: {BitConverter.ToString(xxHash32Value)}");
// XxHash32 Hash: FE-96-D1-9C
byte[] xxHash64Value = XxHash64.Hash(data);
Console.WriteLine($"XxHash64 Hash: {BitConverter.ToString(xxHash64Value)}");
// XxHash64 Hash: 54-26-20-E3-A2-A9-2E-D1
byte[] xxHash128Value = XxHash128.Hash(data);
Console.WriteLine($"XxHash128 Hash: {BitConverter.ToString(xxHash128Value)}");
// XxHash128 Hash: 49-A0-48-99-59-7A-35-67-53-76-53-A0-D9-95-5B-86
Main Types
The main types provided by this library are:
System.IO.Hashing.Crc32System.IO.Hashing.Crc64System.IO.Hashing.XxHash3System.IO.Hashing.XxHash32System.IO.Hashing.XxHash64System.IO.Hashing.XxHash128
Additional Documentation
Related Packages
Cryptographic services, including secure encryption and decryption of data: System.Security.Cryptography
Feedback & Contributing
System.IO.Hashing is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Showing the top 20 packages that depend on System.IO.Hashing.
| Packages | Downloads |
|---|---|
|
Microsoft.Orleans.Reminders
Reminders library for Microsoft Orleans used on the server.
|
4 |
|
StackExchange.Redis
High performance Redis client, incorporating both synchronous and asynchronous usage.
|
3 |
|
Microsoft.Orleans.Client
Collection of Microsoft Orleans libraries and files needed on the client.
|
3 |
|
Microsoft.Orleans.Clustering.AzureStorage
Microsoft Orleans clustering provider backed by Azure Table Storage
|
3 |
|
Microsoft.Orleans.Persistence.AzureStorage
Microsoft Orleans persistence providers backed by Azure Storage
|
3 |
|
Microsoft.Orleans.Persistence.AzureStorage
Microsoft Orleans persistence providers backed by Azure Storage
|
2 |
|
Azure.Storage.Common
This client library enables working with the Microsoft Azure Storage services which include the blob and file services for storing binary and text data, and the queue service for storing messages that may be accessed by a client.
For this release see notes - https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Common/README.md and https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Common/CHANGELOG.md
in addition to the breaking changes https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.Common/BreakingChanges.txt
Microsoft Azure Storage quickstarts and tutorials - https://docs.microsoft.com/en-us/azure/storage/
Microsoft Azure Storage REST API Reference - https://docs.microsoft.com/en-us/rest/api/storageservices/
|
2 |
|
Microsoft.Orleans.Clustering.AzureStorage
Microsoft Orleans clustering provider backed by Azure Table Storage
|
2 |
|
Microsoft.Orleans.Client
Collection of Microsoft Orleans libraries and files needed on the client.
|
2 |
|
Microsoft.Orleans.Streaming
Streaming library for Microsoft Orleans used both on the client and server.
|
2 |
|
Microsoft.Orleans.Hosting.AzureCloudServices
Hosting utilities for Azure Cloud Services of Microsoft Orleans.
|
2 |
|
Microsoft.Orleans.Reminders.AzureStorage
Microsoft Orleans reminders provider backed by Azure Table Storage
|
2 |
|
Microsoft.SourceLink.GitHub
Generates source link for GitHub repositories.
|
2 |
|
Microsoft.Orleans.Persistence.Memory
In-memory storage for Microsoft Orleans
|
2 |
|
Microsoft.Orleans.Streaming.AzureStorage
Microsoft Orleans streaming provider backed by Azure Queue Storage
|
2 |
|
Microsoft.Orleans.Core
Core library of Microsoft Orleans used both on the client and server.
|
2 |
|
Microsoft.Orleans.Serialization
Fast, flexible, and version-tolerant serializer for .NET
|
1 |
.NET 10.0
- No dependencies.
.NET 11.0
- No dependencies.
.NET Framework 4.6.2
- System.Buffers (>= 4.6.1)
- System.Memory (>= 4.6.3)
.NET Standard 2.0
- System.Buffers (>= 4.6.1)
- System.Memory (>= 4.6.3)