Discuss this help topic in SecureBlackbox Forum

TElDHKeyMaterial.P

TElDHKeyMaterial     See also     


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


Buffer containing Diffie-Hellman "P" parameter.

Declaration

[C#]
    byte[] P;

[VB.NET]
    Property P As Byte()

[Pascal]
    property P : ByteArray;

[C++]
    void get_P(std::vector<uint8_t> &OutResult);
    void set_P(const std::vector<uint8_t> &Value);

[PHP]
    string get_P()
    void set_P(array of byte|string|NULL $Value)

[Java]
    byte[] getP();
    void setP(byte[] Value);

Description

    Use this read-only property to get a buffer containing Diffie-Hellman "P" parameter (prime modulus).

See also:     G     X     Y    

Discuss this help topic in SecureBlackbox Forum