Discuss this help topic in SecureBlackbox Forum

TElGOST2001KeyMaterial.LoadPublic

TElGOST2001KeyMaterial     See also     


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


Loads the public part of the key.

Declaration

[C#]
    void LoadPublic(byte[] Buffer, int Index, int Size);
    void LoadPublic(System.IO.Stream Stream, int Count);

[VB.NET]
    Sub LoadPublic(ByVal Buffer As Byte(), ByVal Index As Integer, ByVal Size As Integer)
    Sub LoadPublic(ByVal Stream As System.IO.Stream, ByVal Count As Integer)

[Pascal]
    procedure LoadPublic(Buffer : pointer; Size : integer);

[C++]
    void LoadPublic(void * Buffer, int32_t Size);

[PHP]
    void LoadPublic(TSBPointer|array of byte|string|NULL $Buffer, integer $Size)
    void LoadPublic(TStream $Stream, integer $Count)

[Java]
    void loadPublic(byte[] Buffer, int Index, int Size);

Parameters

  • Buffer - the buffer that stores the key material.
  • Index - the offset of the key material in the buffer.
  • Size - the length of key material in bytes.
  • Stream - ...
  • Count - ...

Description

    Use this method to load the public part of the key.

See also:     Q     Load     LoadSecret     Save     SavePublic     SaveSecret     PublicKey     SecretKey    

Discuss this help topic in SecureBlackbox Forum