Discuss this help topic in SecureBlackbox Forum

TElRSAKeyMaterial.LoadSecret

TElRSAKeyMaterial     See also     


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


Loads secret part of the key

Declaration

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

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

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

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

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

[Java]
    void loadSecret(byte[] Buffer, int Start, int Size);

Parameters

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

Description

    Use this method to load secret part of the key.

See also:     Load     LoadPublic     Save     SavePublic     SaveSecret    

Discuss this help topic in SecureBlackbox Forum