Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.GetDSSParams

TElX509Certificate     


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


Returns parameters for DSS algorithm.

Declaration

[C#]
    bool GetDSSParams(ref byte[] DSSP, ref int DSSPSize, ref byte[] DSSQ, ref int DSSQSize, ref byte[] DSSG, ref int DSSGSize, ref byte[] DSSY, ref int DSSYSize);

[VB.NET]
    Function GetDSSParams(ByRef DSSP As Byte(), ByRef DSSPSize As Integer, ByRef DSSQ As Byte(), ByRef DSSQSize As Integer, ByRef DSSG As Byte(), ByRef DSSGSize As Integer, ByRef DSSY As Byte(), ByRef DSSYSize As Integer) As Boolean

[Pascal]
    function GetDSSParams( DSSP : pointer; var DSSPSize : integer; DSSQ : pointer; var DSSQSize : integer; DSSG : pointer; var DSSGSize : integer; DSSY : pointer; var DSSYSize : integer): boolean;

[C++]
    bool GetDSSParams(void * DSSP, int32_t &DSSPSize, void * DSSQ, int32_t &DSSQSize, void * DSSG, int32_t &DSSGSize, void * DSSY, int32_t &DSSYSize);

[PHP]
    bool GetDSSParams(TSBPointer|array of byte|string|NULL $DSSP, integer &$DSSPSize, TSBPointer|array of byte|string|NULL $DSSQ, integer &$DSSQSize, TSBPointer|array of byte|string|NULL $DSSG, integer &$DSSGSize, TSBPointer|array of byte|string|NULL $DSSY, integer &$DSSYSize)

[Java]
    boolean getDSSParams(byte[][] DSSP, int[] DSSPSize, byte[][] DSSQ, int[] DSSQSize, byte[][] DSSG, int[] DSSGSize, byte[][] DSSY, int[] DSSYSize);
    TElDSSParams getDSSParams();

Parameters

  • DSSP - P DSS parameter.
  • DSSPSize - the size of the buffer with P DSS buffer.
  • DSSQ - Q DSS parameter.
  • DSSQSize - the size of the buffer with Q DSS buffer.
  • DSSG - G DSS parameter.
  • DSSGSize - the size of the buffer with G DSS buffer.
  • DSSY - Y DSS parameter.
  • DSSYSize - the size of the buffer with Y DSS buffer.

Description

    Use this function to obtain parameters of DSS portion of the certificate.

Discuss this help topic in SecureBlackbox Forum