EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#/Java  VB.NET  Pascal  ActiveX  DLL 


TElX509Certificate.ValidateDSS

TElX509Certificate     See also    


 

Validates the certificate using DSS keys

 
 

Declaration

[C#/Java]
    bool ValidateDSS([in] byte[] PDSSP, [in] byte[] PDSSQ, [in] byte[] PDSSG, [in] byte[] PDSSY);

[VB.NET]
    Function ValidateDSS(ByVal PDSSP As Byte(), ByVal PDSSQ As Byte(), ByVal PDSSG As Byte(), ByVal PDSSY As Byte()) As Boolean

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

[VB6]
    Sub IElCertificateX.ValidateDSS(DSSP As Byte(), DSSQ As Byte(), DSSG As Byte() , DSSY As Byte(), Valid As Boolean)

[ActiveX]
    HRESULT _stdcall IElCertificateX.ValidateDSS( [in] VARIANT DSSP, [in] VARIANT DSSQ, [in] VARIANT DSSG, [in] VARIANT DSSY [out] VARIANT_BOOL * Valid);

[DLL]
    __stdcall BOOL SBX509ValidateDSS(HANDLE handle, void* pDSSP, int pDSSPSize, void* pDSSQ, int pDSSQSize, void* pDSSG, int pDSSGSize, void* pDSSY, int pDSSYSize );
 
 

Parameters

  • [DLL]handle - handle to the TElX509Certificate object that was returned by Constructor
  • DSSP (PDSSP, pDSSP) - P DSS parameter. [ActiveX] Buffer should contain a one-dimensional zero-based safe array with elements of type unsigned char (byte).
  • DSSPSize (pDSSPSize) - the size of the buffer with DSS P.
  • DSSQ (PDSSQ, pDSSQ) - Q DSS parameter. [ActiveX] Buffer should contain a one-dimensional zero-based safe array with elements of type unsigned char (byte).
  • DSSQSize (pDSSQ) - the size of the buffer with DSS Q.
  • DSSG (PDSSQ, pDSSQ) - G DSS parameter. [ActiveX] Buffer should contain a one-dimensional zero-based safe array with elements of type unsigned char (byte).
  • DSSGSize (pDSSGSize) - the size of the buffer with DSS G.
  • DSSY (PDSSY, pDSSY) - Y DSS parameter. [ActiveX] Buffer should contain a one-dimensional zero-based safe array with elements of type unsigned char (byte).
  • DSSYSize (pDSSYSize) - the size of the buffer with DSS Y.
 
 

Return value

    True if certificate is valid.
    False otherwise.

 
 

Description

    Use this function to validate a certificate using the given DSS parameters. DSS parameters can be obtained from the certificate using DSSParams method.

 
 

See also:     DSSParams    

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation