Java org.bouncycastle.crypto Digest fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.crypto Digest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.crypto Digest.

The text is from its open source code.

Implementation

org.bouncycastle.crypto.Digest has the following implementations.
Click this link to see all its implementation.

Constructor

Method

intdoFinal(byte[] out, int outOff)
close the digest, producing the final digest value.
StringgetAlgorithmName()
return the algorithm name
intgetDigestSize()
return the size, in bytes, of the digest produced by this message digest.
voidreset()
reset the digest back to it's initial state.
voidupdate(byte[] in, int inOff, int len)
update the message digest with a block of bytes.
voidupdate(byte in)
update the message digest with a single byte.