EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSymmetricCrypto.EncryptUpdate

TElSymmetricCrypto     See also    


 

Decrypts the data block.

 
 

Declaration

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

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

[Pascal]
    procedure EncryptUpdate(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 encrypt.
  • InIndex - Offset of the input data in the input array.
  • InSize - Size of input data in bytes.
  • OutBuffer - reference to buffer where encrypted 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 encrypt the data block which is part of the larger data. To finish encryption of the whole data use FinalizeEncryption method.

 
 

See also:     InitializeEncryption     FinalizeEncryption    

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