Sha3Digest Class

Implementation of SHA-3 based on following KeccakNISTInterface.c from http://keccak.noekeon.org/

Definition

Namespace: Org.BouncyCastle.Crypto.Digests
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
public class Sha3Digest : KeccakDigest
Inheritance
Object    KeccakDigest    Sha3Digest

Remarks

Following the naming conventions used in the C source code to enable easy review of the implementation.

Constructors

Sha3DigestInitializes a new instance of the Sha3Digest class
Sha3Digest(Int32)Initializes a new instance of the Sha3Digest class
Sha3Digest(Sha3Digest)Initializes a new instance of the Sha3Digest class

Properties

Methods

Absorb(Byte)
(Inherited from KeccakDigest)
Absorb(ReadOnlySpanByte)
(Inherited from KeccakDigest)
Absorb(Byte, Int32, Int32)
(Inherited from KeccakDigest)
AbsorbBits
(Inherited from KeccakDigest)
BlockUpdate(ReadOnlySpanByte)
(Inherited from KeccakDigest)
BlockUpdate(Byte, Int32, Int32)
(Inherited from KeccakDigest)
Copy
(Overrides KeccakDigestCopy)
DoFinal(SpanByte)
(Overrides KeccakDigestDoFinal(SpanByte))
DoFinal(Byte, Int32)
(Overrides KeccakDigestDoFinal(Byte, Int32))
DoFinal(Byte, Int32, Byte, Int32)
(Overrides KeccakDigestDoFinal(Byte, Int32, Byte, Int32))
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetByteLength
(Inherited from KeccakDigest)
GetDigestSize
(Inherited from KeccakDigest)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Reset
(Inherited from KeccakDigest)
Reset(IMemoable)
(Inherited from KeccakDigest)
Squeeze(SpanByte)
(Inherited from KeccakDigest)
Squeeze(Byte, Int32, Int64)
(Inherited from KeccakDigest)
ToStringReturns a string that represents the current object.
(Inherited from Object)
Update
(Inherited from KeccakDigest)

Fields

bitsInQueue
(Inherited from KeccakDigest)
dataQueue
(Inherited from KeccakDigest)
fixedOutputLength
(Inherited from KeccakDigest)
rate
(Inherited from KeccakDigest)
squeezing
(Inherited from KeccakDigest)

See Also