Discuss this help topic in SecureBlackbox Forum

TElECKeyMaterial.ImportPublicKey

TElECKeyMaterial     See also     


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


Imports public key.

Declaration

[C#]
    void ImportPublicKey(byte[] QX, int QXIndex, int QXSize, byte[] QY, int QYIndex, int QYSize);

[VB.NET]
    Sub ImportPublicKey(ByVal QX As Byte(), ByVal QXIndex As Integer, ByVal QXSize As Integer, ByVal QY As Byte(), ByVal QYIndex As Integer, ByVal QYSize As Integer)

[Pascal]
    procedure ImportPublicKey(QX : pointer; QXSize : integer; QY : pointer; QYSize : integer);

[C++]
    void ImportPublicKey(void * QX, int32_t QXSize, void * QY, int32_t QYSize);

[PHP]
    void ImportPublicKey(TSBPointer|array of byte|string|NULL $QX, integer $QXSize, TSBPointer|array of byte|string|NULL $QY, integer $QYSize)

[Java]
    void importPublicKey(byte[] QX, int QXIndex, int QXSize, byte[] QY, int QYIndex, int QYSize);

Parameters

  • QX - Buffer containing the X-coordinate of the public key point
  • QXIndex - Index of the first byte of the X-coordinate of the public key point in QX buffer
  • QXSize - Length of the coordinate in bytes
  • QY - Buffer containing the Y-coordinate of the public key point
  • QYIndex - Index of the first byte of the Y-coordinate of the public key point in QY buffer
  • QYSize - Length of the coordinate in bytes

Description

    

See also:     ExportPublicKey    

Discuss this help topic in SecureBlackbox Forum