Search completed in 1.11 seconds.
2 results for "CK_INFO":
FC_GetInfo
MozillaProjectsNSSReferenceFC GetInfo
syntax ck_rv fc_getinfo(ck_info_ptr pinfo); parameters fc_getinfo has one parameter: pinfo points to a ck_info structure description fc_getinfo returns general information about the pkcs #11 library.
... on return, the ck_info structure that pinfo points to has the following information: cryptokiversion: pkcs #11 interface version number implemented by the pkcs #11 library.
... examples note the use of the %.32s format string to print the manufacturerid and librarydescription members of the ck_info structure.
... #include <assert.h> #include <stdio.h> ck_function_list_ptr pfunctionlist; ck_rv crv; ck_info info; crv = fc_getfunctionlist(&pfunctionlist); assert(crv == ckr_ok); ...
PKCS #11 Module Specs
MozillaProjectsNSSPKCS11Module Specs
manufacturerid override the default manufactureid value for the module returned in the ck_info, ck_slot_info, and ck_token_info structures with an internationalize string (utf8).
... librarydescription override the default librarydescription value for the module returned in the ck_info structure with an internationalize string (utf8).