Discuss this help topic in SecureBlackbox Forum

TElECKeyMaterial.ExportPublicKey

TElECKeyMaterial     See also     


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


Exports public key.

Declaration

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

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

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

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

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

[Java]
    void exportPublicKey(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

    Use this method to export public key.

See also:     ImportPublicKey    

Discuss this help topic in SecureBlackbox Forum