C# Class Net.Pkcs11Interop.LowLevelAPI40.Pkcs11UriUtils

Utility class connecting PKCS#11 URI and Pkcs11Interop types
显示文件 Open project: Pkcs11Interop/Pkcs11Interop

Public Methods

Method Description
GetMatchingSlotList ( Pkcs11Uri pkcs11Uri, Pkcs11 pkcs11, bool tokenPresent, uint &slotList ) : CKR

Obtains a list of all slots where token that matches PKCS#11 URI is present

GetObjectAttributes ( Pkcs11Uri pkcs11Uri, CK_ATTRIBUTE &objectAttributes ) : void

Returns list of object attributes defined by PKCS#11 URI

Matches ( Pkcs11Uri pkcs11Uri, CK_INFO libraryInfo ) : bool

Checks whether PKCS#11 library information matches PKCS#11 URI

Matches ( Pkcs11Uri pkcs11Uri, CK_SLOT_INFO slotInfo, uint slotId ) : bool

Checks whether slot information matches PKCS#11 URI

Matches ( Pkcs11Uri pkcs11Uri, CK_TOKEN_INFO tokenInfo ) : bool

Checks whether token information matches PKCS#11 URI

Matches ( Pkcs11Uri pkcs11Uri, List objectAttributes ) : bool

Checks whether object attributes match PKCS#11 URI

Method Details

GetMatchingSlotList() public static method

Obtains a list of all slots where token that matches PKCS#11 URI is present
public static GetMatchingSlotList ( Pkcs11Uri pkcs11Uri, Pkcs11 pkcs11, bool tokenPresent, uint &slotList ) : CKR
pkcs11Uri Net.Pkcs11Interop.Common.Pkcs11Uri PKCS#11 URI
pkcs11 Pkcs11 Low level PKCS#11 wrapper
tokenPresent bool Flag indicating whether the list obtained includes only those slots with a token present (true), or all slots (false)
slotList uint List of slots matching PKCS#11 URI
return CKR

GetObjectAttributes() public static method

Returns list of object attributes defined by PKCS#11 URI
public static GetObjectAttributes ( Pkcs11Uri pkcs11Uri, CK_ATTRIBUTE &objectAttributes ) : void
pkcs11Uri Net.Pkcs11Interop.Common.Pkcs11Uri PKCS#11 URI
objectAttributes CK_ATTRIBUTE List of object attributes defined by PKCS#11 URI
return void

Matches() public static method

Checks whether PKCS#11 library information matches PKCS#11 URI
public static Matches ( Pkcs11Uri pkcs11Uri, CK_INFO libraryInfo ) : bool
pkcs11Uri Net.Pkcs11Interop.Common.Pkcs11Uri PKCS#11 URI
libraryInfo CK_INFO PKCS#11 library information
return bool

Matches() public static method

Checks whether slot information matches PKCS#11 URI
public static Matches ( Pkcs11Uri pkcs11Uri, CK_SLOT_INFO slotInfo, uint slotId ) : bool
pkcs11Uri Net.Pkcs11Interop.Common.Pkcs11Uri PKCS#11 URI
slotInfo CK_SLOT_INFO Slot information
slotId uint Slot identifier
return bool

Matches() public static method

Checks whether token information matches PKCS#11 URI
public static Matches ( Pkcs11Uri pkcs11Uri, CK_TOKEN_INFO tokenInfo ) : bool
pkcs11Uri Net.Pkcs11Interop.Common.Pkcs11Uri PKCS#11 URI
tokenInfo CK_TOKEN_INFO Token information
return bool

Matches() public static method

Checks whether object attributes match PKCS#11 URI
public static Matches ( Pkcs11Uri pkcs11Uri, List objectAttributes ) : bool
pkcs11Uri Net.Pkcs11Interop.Common.Pkcs11Uri PKCS#11 URI
objectAttributes List Object attributes
return bool