Discuss this help topic in SecureBlackbox Forum

TElKeyMaterial.Load

TElKeyMaterial     See also     


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


Loads the key from the stream.

Declaration

[C#]
    void Load(System.IO.Stream Stream, int Count);

[VB.NET]
    Sub Load(ByVal Stream As System.IO.Stream, ByVal Count As Integer)

[Pascal]
    procedure Load(Stream : TStream; Count : integer = 0); virtual;

[C++]
    void Load(TStream &Stream, int32_t Count);
    void Load(TStream *Stream, int32_t Count);

[PHP]
    void Load(TStream $Stream, integer $Count)

[Java]
    void load(InputStream Stream, int Count);

Parameters

  • Stream - the stream with the key.
  • Count - specifies the number of bytes to be read. If this parameter is zero, the stream from current position till the end is read.
    Default value is 0.

Description

    Use this method to load the key from the stream.

See also:     Generate     Save     Valid    

Discuss this help topic in SecureBlackbox Forum