Discuss this help topic in SecureBlackbox Forum

TElX509Certificate.SameCertificate

TElX509Certificate     


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


Checks the equivalence of two certificates.

Declaration

[C#]
    bool SameCertificate(TElX509Certificate Other);

[VB.NET]
    Function SameCertificate(ByVal Other As TElX509Certificate) As Boolean

[Pascal]
    function SameCertificate(Other : TElX509Certificate): boolean;

[C++]
    bool SameCertificate(TElX509Certificate &Other);
    bool SameCertificate(TElX509Certificate *Other);

[PHP]
    bool SameCertificate(TElX509Certificate $Other)

[Java]
    boolean sameCertificate(TElX509Certificate Other);

Parameters

  • Other - a certificate which equivalence needs to be checked.

Return value

    Returns True if two certificates are the same, and False otherwise.

Description

    Call this method to find out whether another certificate is identical to this one.

Discuss this help topic in SecureBlackbox Forum