Table of Contents

Interface IDigest

Namespace
Enterprises.Org.BouncyCastle.Crypto
Assembly
Enterprises.BouncyCastle.Crypto.dll
public interface IDigest

Properties

AlgorithmName

string AlgorithmName { get; }

Property Value

string

Methods

BlockUpdate(byte[], int, int)

void BlockUpdate(byte[] input, int inOff, int length)

Parameters

input byte[]
inOff int
length int

DoFinal(byte[], int)

int DoFinal(byte[] output, int outOff)

Parameters

output byte[]
outOff int

Returns

int

GetByteLength()

int GetByteLength()

Returns

int

GetDigestSize()

int GetDigestSize()

Returns

int

Reset()

void Reset()

Update(byte)

void Update(byte input)

Parameters

input byte