Discuss this help topic in SecureBlackbox Forum

TElAlgorithmIdentifier.IsAlgorithmSupported

TElAlgorithmIdentifier     See also     


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


Tells whether the algorithm is supported by certain TElAlgorithmIdentifier descendant.

Declaration

[C#]
    bool IsAlgorithmSupported(int Algorithm);

[VB.NET]
    Function IsAlgorithmSupported(ByVal Algorithm As Integer) As Boolean

[Pascal]
    function IsAlgorithmSupported(Algorithm : integer) : boolean; virtual;

[C++]
    bool IsAlgorithmSupported(int32_t Algorithm);

[PHP]
    bool IsAlgorithmSupported(integer $Algorithm)

[Java]
    boolean isAlgorithmSupported(int Algorithm);

Parameters

  • Algorithm - SecureBlackbox-defined identifier of the algorithm

Supported RSA algorithms:

Supported DSA algorithms:

Supported Diffie-Hellman algorithms:

Return value

    Returns True if the algorithm is supported, and False otherwise.

Description

    Use this method to find out if current algorithm identifier container supports specified algorithm.

See also:     CreateByAlgorithm    

Discuss this help topic in SecureBlackbox Forum