MessageDigestCore.calculate_

Calculates the hash a.k.a. message digest from the input data.

The length of the returned hash is the return value of gcry_md_get_algo_dlen(algorithm) for the algorithm passed to the constructor of this class.

class MessageDigestCore
protected
ubyte[]
calculate_
(
const(ubyte)[][] input_data
)

Parameters

input_data const(ubyte)[][]

data to hash; the elements will be concatenated

Return Value

Type: ubyte[]

the resuting hash.

Meta