ShakeDigest Class

Implementation of SHAKE 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 ShakeDigest : KeccakDigest, 
	IXof, IDigest
Inheritance
Object    KeccakDigest    ShakeDigest
Derived
Implements
IDigest, IXof

Remarks

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

Constructors

ShakeDigestInitializes a new instance of the ShakeDigest class
ShakeDigest(Int32)Initializes a new instance of the ShakeDigest class
ShakeDigest(ShakeDigest)Initializes a new instance of the ShakeDigest 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
(Overrides KeccakDigestGetDigestSize)
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)
Output(SpanByte) 
Output(Byte, Int32, Int32) 
OutputFinal(SpanByte) 
OutputFinal(Byte, Int32, Int32) 
OutputFinal(Byte, Int32, Int32, Byte, Int32) 
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