Discuss this help topic in SecureBlackbox Forum

TElECIESCrypto.Encrypt

TElECIESCrypto     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Declaration

[C#]
    void Encrypt(System.IO.Stream InStream, System.IO.Stream OutStream);
    void Encrypt(byte[] InBuffer, int InIndex, int InSize, ref byte[] OutBuffer, int OutIndex, ref int OutSize);

[VB.NET]
    Sub Encrypt(ByVal InStream As System.IO.Stream, ByVal OutStream As System.IO.Stream)
    Sub Encrypt(ByVal InBuffer As Byte(), ByVal InIndex As Integer, ByVal InSize As Integer, ByRef OutBuffer As Byte(), ByVal OutIndex As Integer, ByRef OutSize As Integer)

[Pascal]
    procedure Encrypt(InBuffer : pointer; InSize : integer; OutBuffer : pointer; var OutSize : integer); overload;
    procedure Encrypt(InStream, OutStream : TStream); overload;
    procedure Encrypt(const InBuffer : ByteArray; InIndex : integer; InSize : integer; var OutBuffer : ByteArray; OutIndex : integer; var OutSize : integer); overload;

[C++]
    void Encrypt(void * InBuffer, int32_t InSize, void * OutBuffer, int32_t &OutSize);
    void Encrypt(TStream &InStream, TStream &OutStream);
    void Encrypt(TStream *InStream, TStream *OutStream);

[PHP]
    void Encrypt(TSBPointer|array of byte|string|NULL $InBuffer, integer $InSize, TSBPointer|array of byte|string|NULL $OutBuffer, integer &$OutSize)
    void Encrypt(TStream $InStream, TStream $OutStream)

[Java]
    void encrypt(byte[] InBuffer, int InIndex, int InSize, byte[][] OutBuffer, int OutIndex, TSBInteger OutSize);
    void encrypt(TElStream InStream, TElStream OutStream);
    void encrypt(InputStream InStream, OutputStream OutStream);

Parameters

  • InBuffer -
  • InSize -
  • OutBuffer -
  • OutSize -
  • InStream -
  • OutStream -
  • InIndex -
  • OutIndex -

Description

    This topic is under development.

See also:     Decrypt     OnProgress    

Discuss this help topic in SecureBlackbox Forum