Class MD5Context
Summary description for MD5_CTX.
Inheritance
System.Object
    MD5Context
  Namespace: Syncfusion.XlsIO.Implementation.Security
Assembly: Syncfusion.XlsIO.Portable.dll
Syntax
public class MD5Context : Object
  Constructors
MD5Context()
Initializes a new instance of the MD5Context class.
Declaration
public MD5Context()
  Properties
Buffer
Gets or sets the buffer.
Declaration
public uint[] Buffer { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.UInt32[] | The buffer.  | 
      
Digest
Gets or sets the digest.
Declaration
public byte[] Digest { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Byte[] | The digest.  | 
      
I
Gets or sets the I.
Declaration
public uint[] I { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.UInt32[] | The I.  | 
      
InBuffer
Gets or sets the input buffer.
Declaration
public byte[] InBuffer { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Byte[] | The input buffer.  | 
      
Methods
Final()
Finals this instance.
Declaration
public void Final()
  StoreDigest()
Stores the digest.
Declaration
public void StoreDigest()
  Update(Byte[], UInt32)
Updates
Declaration
public void Update(byte[] inBuf, uint inLen)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Byte[] | inBuf | The input buf.  | 
      
| System.UInt32 | inLen | The buffer length.  |