C# Класс Iaik.Utils.Hash.HashProvider

Hashes data with the specified algorithm and from the specified sources
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
_hashAlgorithm System.Security.Cryptography.HashAlgorithm
_sHashAlgorithm string

Открытые методы

Метод Описание
Hash ( ) : byte[]

Performs the hashing operation. The data is applied to the hash algorithm as they come in dataProviders.

Hash ( byte buffer, int index ) : void

Performs the hashing operation. The data is applied to the hash algorithm as they come in dataProviders.

HashProvider ( ) : System
HashProvider ( string hashAlgorithm ) : System

Описание методов

Hash() публичный Метод

Performs the hashing operation. The data is applied to the hash algorithm as they come in dataProviders.
public Hash ( ) : byte[]
Результат byte[]

Hash() публичный Метод

Performs the hashing operation. The data is applied to the hash algorithm as they come in dataProviders.
public Hash ( byte buffer, int index ) : void
buffer byte
index int
Результат void

HashProvider() публичный Метод

public HashProvider ( ) : System
Результат System

HashProvider() публичный Метод

public HashProvider ( string hashAlgorithm ) : System
hashAlgorithm string
Результат System

Описание свойств

_hashAlgorithm защищенное свойство

The hash algorithm instance to use
protected HashAlgorithm,System.Security.Cryptography _hashAlgorithm
Результат System.Security.Cryptography.HashAlgorithm

_sHashAlgorithm защищенное свойство

Name of the hash algorithm
protected string _sHashAlgorithm
Результат string