Discuss this help topic in SecureBlackbox Forum

TElDHKeyMaterial.LoadPeerY

TElDHKeyMaterial     See also     


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


Loads opponent's Y value.

Declaration

[C#]
    void LoadPeerY(byte[] Y, int YStartIndex, int YSize);

[VB.NET]
    Sub LoadPeerY(ByVal Y As Byte(), ByVal YStartIndex As Integer, ByVal YSize As Integer)

[Pascal]
    procedure LoadPeerY(Y: pointer; YSize: integer);

[C++]
    void LoadPeerY(void * Y, int32_t YSize);

[PHP]
    void LoadPeerY(TSBPointer|array of byte|string|NULL $Y, integer $YSize)

[Java]
    void loadPeerY(byte[] Y, int YStartIndex, int YSize);

Parameters

  • Y - Diffie-Hellman public key "Y" parameter
  • YStartIndex - Index from which the "Y" data starts in the Y buffer
  • YSize - Size of the "Y" parameter value

Description

    Use this method to opponent's Y value.

See also:     LoadPublic    

Discuss this help topic in SecureBlackbox Forum