Interface IHashService
Defines the interface for a service that handles hashing operations.
Namespace: Coree.NETStandard.Services.HashManagement
Assembly: Coree.NETStandard.dll
Syntax
public interface IHashService
Methods
| Edit this page View SourceComputeCrc32Hash(string)
Computes the CRC32 hash of a given string using UTF-16 encoding, suitable for filenames.
Declaration
string ComputeCrc32Hash(string input)
Parameters
| Type | Name | Description |
|---|---|---|
| string | input | The string to hash, typically a filename. |
Returns
| Type | Description |
|---|---|
| string | A CRC32 hash as a hexadecimal string. |