Class HashService
Provides hashing services to manage and perform hash operations.
Inheritance
Inherited Members
Namespace: Coree.NETStandard.Services.HashManagement
Assembly: Coree.NETStandard.dll
Syntax
public class HashService : ServiceFactoryEx<HashService>, IDisposable, IHashService
Constructors
| Edit this page View SourceHashService(ILogger<HashService>?)
Initializes a new instance of the HashService with optional logging.
Declaration
public HashService(ILogger<HashService>? logger = null)
Parameters
Type | Name | Description |
---|---|---|
ILogger<HashService> | logger | The logger used to log service activity and errors, if any. |
Methods
| Edit this page View SourceComputeCrc32Async(Stream, CancellationToken)
Computes the CRC32 hash of data read from a stream asynchronously.
Declaration
public Task<uint> ComputeCrc32Async(Stream stream, CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
Stream | stream | The stream from which to read the data. |
CancellationToken | cancellationToken | A cancellation token that can be used to cancel the read operation. |
Returns
Type | Description |
---|---|
Task<uint> | A task that represents the asynchronous operation, resulting in the CRC32 hash as a hexadecimal string. |
ComputeCrc32Async(string, CancellationToken)
Computes the CRC32 hash of data read from a file asynchronously.
Declaration
public Task<uint> ComputeCrc32Async(string filePath, CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
string | filePath | The file path from which to read the data. |
CancellationToken | cancellationToken | A cancellation token that can be used to cancel the read operation. |
Returns
Type | Description |
---|---|
Task<uint> | A task that represents the asynchronous operation, resulting in the CRC32 hash as a hexadecimal string. |
ComputeCrc32Hash(string)
Computes the CRC32 hash of a given string using unicode encoding.
Declaration
public string ComputeCrc32Hash(string input)
Parameters
Type | Name | Description |
---|---|---|
string | input | The string to hash |
Returns
Type | Description |
---|---|
string | A CRC32 hash as a hexadecimal string. |