EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSymmetricCrypto.DecryptUpdate

TElSymmetricCrypto     See also    


 

Decrypts the data block.

 
 

Declaration

[C#]
    void DecryptUpdate(byte[] InBuffer, int InIndex, ref byte[] OutBuffer, int OutIndex, ref int OutSize);

[VB.NET]
    Procedure DecryptUpdate(ByVal InBuffer As Byte(), InIndex As Integer, ByRef OutBuffer As Byte(), OutIndex As Integer, ByRef OutSize As Integer)

[Pascal]
    procedure DecryptUpdate(InBuffer : pointer; InSize : integer; OutBuffer : pointer; var OutSize : integer);

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • InBuffer - reference to the data to decrypt.
  • InIndex - Offset of the input data in the input array.
  • InSize - Size of input data in bytes.
  • OutBuffer - reference to buffer where decrypted data should be stored.
  • OutIndex - Offset in the output array, starting from which the data is written.
  • OutSize - Size of available space in OutBuffer in bytes.
 
 

Description

    Use this method when you want to decrypt the data block which is part of the larger data. To finish decryption of the whole data use FinalizeDecryption method.

 
 

See also:     InitializeDecryption     FinalizeDecryption    

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation