Discuss this help topic in SecureBlackbox Forum

TElSSHKey.DSSX

TElSSHKey     See also     


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


This property specifies the value of X parameter of DSS signature key.

Declaration

[C#]
    byte[] DSSX;

[VB.NET]
    Property DSSX As Byte()

[Pascal]
    property DSSX : string;

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

[PHP]
    string get_DSSX()
    void set_DSSX(array of byte|string|NULL $Value)

[Java]
    byte[] getDSSX();
    void setDSSX(byte[] Value);

Description

    This property specifies the X («Private key») parameter of the DSS signature key. The string should contain the binary data of X.

    This parameter may be empty if there's no need to sign data with this key (e.g. if key is the server public key, which is needed only to authenticate the server).

See also:     DSSG     DSSP     DSSQ     DSSY    

Discuss this help topic in SecureBlackbox Forum