Méthode | Description | |
---|---|---|
Dispose ( ) : void |
Disposes object
|
|
GetInfo ( ) : |
Gets general information about loaded PKCS#11 library
|
|
GetSlotList ( bool tokenPresent ) : List |
Obtains a list of slots in the system
|
|
Pkcs11 ( string libraryPath, bool useOsLocking ) : System |
Loads and initializes PCKS#11 library
|
|
Pkcs11 ( string libraryPath, bool useOsLocking, bool useGetFunctionList ) : System |
Loads and initializes PCKS#11 library
|
|
WaitForSlotEvent ( bool dontBlock, bool &eventOccured, uint &slotId ) : void |
Waits for a slot event, such as token insertion or token removal, to occur
|
Méthode | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Disposes object
|
protected Dispose ( bool disposing ) : void | ||
disposing | bool | Flag indicating whether managed resources should be disposed |
Résultat | void |
public GetSlotList ( bool tokenPresent ) : List |
||
tokenPresent | bool | Flag indicating whether the list obtained includes only those slots with a token present (true), or all slots (false) |
Résultat | List |
public Pkcs11 ( string libraryPath, bool useOsLocking ) : System | ||
libraryPath | string | Library name or path |
useOsLocking | bool | Flag indicating whether PKCS#11 library can use the native operation system threading model for locking. Should be set to true in all multithreaded applications. |
Résultat | System |
public Pkcs11 ( string libraryPath, bool useOsLocking, bool useGetFunctionList ) : System | ||
libraryPath | string | Library name or path |
useOsLocking | bool | Flag indicating whether PKCS#11 library can use the native operation system threading model for locking. Should be set to true in all multithreaded applications. |
useGetFunctionList | bool | Flag indicating whether cryptoki function pointers should be acquired via C_GetFunctionList (true) or via platform native function (false) |
Résultat | System |
public WaitForSlotEvent ( bool dontBlock, bool &eventOccured, uint &slotId ) : void | ||
dontBlock | bool | Flag indicating that method should not block until an event occurs - it should return immediately instead. See PKCS#11 standard for full explanation. |
eventOccured | bool | Flag indicating whether event occured |
slotId | uint | PKCS#11 handle of slot that the event occurred in |
Résultat | void |