SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  ActiveX 


TElDSAKeyMaterial.Equals

TElDSAKeyMaterial     See also    


 

Compares two instances of TElDSAKeyMaterial.

   

Declaration

[C#/Java]
    virtual bool Equals(TElKeyMaterial Source, bool PublicOnly);

[VB.NET]
    Overridable Function Equals(ByVal Source As TElKeyMaterial, ByVal PublicOnly As Boolean) As Boolean

[Pascal]
    function Equals(Source : TElKeyMaterial; PublicOnly : boolean): boolean; virtual;

[VB6]
    Function IElDSAKeyMaterialX7.Equals( Source As IElDSAKeyMaterialX, PublicOnly As Boolean) As Boolean

[ActiveX]
    HRESULT _stdcall IElDSAKeyMaterialX7.Equals([in] IElDSAKeyMaterialX * Source, [in] VARIANT_BOOL PublicOnly, [out, retval] VARIANT_BOOL * Res);

   

Parameters

  • Source - Key material to be compared with the current one
  • PublicOnly - Set this parameter to True to compare only public parts of the keys
   

Return value

    Returns True if the keys are equal,
    and False otherwise.

   

Description

    Use this method to compare two instances of TElDSAKeyMaterial class.

   

See also:         

 
Back to top