Discuss this help topic in SecureBlackbox Forum

TElRSAKeyMaterial.Equals

TElRSAKeyMaterial     


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


Checks equality of two keys.

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;

[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 - source from which key material should be loaded
  • PublicOnly - set this parameter to True to compare public parts only
  • obj -

Return value

    Returns True if the key loaded from Source is equal to the current one, and False otherwise.

Description

    Use this method to compare another RSA key with the current one.

Discuss this help topic in SecureBlackbox Forum