Discuss this help topic in SecureBlackbox Forum

TElKeyMaterial.Equals

TElKeyMaterial     See also     


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


Compares two instances of TElKeyMaterial.

Declaration

[C#]
    bool Equals(TElKeyMaterial Source, bool PublicOnly);
    bool Equals(Object obj);

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

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

[C++]
    bool Equals(TElKeyMaterial &Source, bool PublicOnly);
    bool Equals(TElKeyMaterial *Source, bool PublicOnly);

[PHP]
    bool Equals(TElKeyMaterial $Source, bool $PublicOnly)

[Java]
    boolean equals(TElKeyMaterial Source, boolean PublicOnly);

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
  • obj -

Return value

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

Description

    Use this method to compare two instances of TElKeyMaterial class.

See also:     Assign    

Discuss this help topic in SecureBlackbox Forum