C# Класс Core.Security.Cryptography.Keccak256Managed

Computes the SHA3 Keccak 256 hash for the input data using the managed library.
Наследование: Core.Security.Cryptography.SHA3
Показать файл Открыть проект

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

Метод Описание
Initialize ( ) : void

Initializes an implementation of the Keccak256Managed class.

Защищенные методы

Метод Описание
HashCore ( Array array, int ibStart, int cbSize ) : void

Routes data written to the object into the hash algorithm for computing the hash.

HashFinal ( ) : byte[]

Finalizes the hash computation after the last data is processed by the cryptographic stream object.

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

HashCore() защищенный Метод

Routes data written to the object into the hash algorithm for computing the hash.
protected HashCore ( Array array, int ibStart, int cbSize ) : void
array Array The input to compute the hash code for.
ibStart int The offset into the byte array from which to begin using data.
cbSize int The number of bytes in the byte array to use as data.
Результат void

HashFinal() защищенный Метод

Finalizes the hash computation after the last data is processed by the cryptographic stream object.
protected HashFinal ( ) : byte[]
Результат byte[]

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

Initializes an implementation of the Keccak256Managed class.
public Initialize ( ) : void
Результат void