std.sha256

Module entries: Sha256

class Sha256

Computes the SHA-256 hash of a piece of data.

this()

this()

Create a new instance.

update(data)

void update(ubyte[] data)

Update the hash for a block of data.

The result for calling update multiple times is the same as if update had been called once with all data.

finalize()

ubyte[] finalize()

Return the hash value.

update must not be called past this point.