Discuss this help topic in SecureBlackbox Forum

TElPublicKeyCrypto.BeginEncrypt

TElPublicKeyCrypto     See also     


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


This topic is under development…

Declaration

[C#]
    void BeginEncrypt(byte[] InBuffer, int InIndex, int InSize);
    void BeginEncrypt(System.IO.Stream InStream, System.IO.Stream OutStream, int Count);

[VB.NET]
    Sub BeginEncrypt(ByVal InBuffer As Byte(), ByVal InIndex As Integer, ByVal InSize As Integer)
    Sub BeginEncrypt(ByVal InStream As System.IO.Stream, ByVal OutStream As System.IO.Stream, ByVal Count As Integer)

[Pascal]
    procedure BeginEncrypt(InBuffer : pointer; InSize : integer);
    procedure BeginEncrypt(InStream : TStream; OutStream : TStream; Count : integer = 0);

[C++]
    void BeginEncrypt(void * InBuffer, int32_t InSize);
    void BeginEncrypt(TStream &InStream, TStream &OutStream, int32_t Count);
    void BeginEncrypt(TStream *InStream, TStream *OutStream, int32_t Count);

[PHP]
    void BeginEncrypt(TSBPointer|array of byte|string|NULL $InBuffer, integer $InSize)
    void BeginEncrypt(TStream $InStream, TStream $OutStream, integer $Count)

[Java]
    void beginEncrypt(byte[] InBuffer, int InIndex, int InSize);
    void beginEncrypt(InputStream InStream, OutputStream OutStream, int Count);

Parameters

  • InBuffer -
  • InIndex -
  • InSize -
  • InStream -
  • OutStream -
  • Count -

Description

    …

See also:         

Discuss this help topic in SecureBlackbox Forum