Discuss this help topic in SecureBlackbox Forum

TElPKCS11Manager.IndexOfObject

TElPKCS11Manager     See also     


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


Returns the index of the desired object.

Declaration

[C#]
    int IndexOfObject(uint Handle);
    int IndexOfObject(TElPKCS11ManagerObject AnObject);

[VB.NET]
    Function IndexOfObject(ByVal Handle As UInt32) As Integer
    Function IndexOfObject(ByVal AnObject As TElPKCS11ManagerObject) As Integer

[Pascal]
    function IndexOfObject(AnObject : TElPKCS11ManagerObject): integer;
    function IndexOfObject(Handle : CK_OBJECT_HANDLE): integer;
    CK_OBJECT_HANDLE = LongWord;

[C++]
    int32_t IndexOfObject(uint32_t Handle);
    int32_t IndexOfObject(TElPKCS11ManagerObject &AnObject);
    int32_t IndexOfObject(TElPKCS11ManagerObject *AnObject);

[PHP]
    integer IndexOfObject(integer $Handle)
    integer IndexOfObject(TElPKCS11ManagerObject $AnObject)

[Java]
    int indexOfObject(long Handle);
    int indexOfObject(TElPKCS11ManagerObject AnObject);

Parameters

  • AnObject - The desired object
  • Handle - Handle of the desired object

Description

    Use this method get the index of a Cryptoki object by its entity or by its handle.

See also:     Objects    

Discuss this help topic in SecureBlackbox Forum