Searched defs:ulObjectCount (Results 1 - 3 of 3) sorted by relevance
/bind-9.11.3/bin/pkcs11/ |
H A D | pkcs11-destroy.c | 90 CK_ULONG ulObjectCount; local 183 rv = pkcs_C_FindObjects(hSession, akey, 50, &ulObjectCount); 190 if (ulObjectCount == 0) { 194 printf("Key object%s found:\n", ulObjectCount > 1 ? "s" : ""); 196 for (i = 0; i < ulObjectCount; i++) { 244 for (i = 0; i < ulObjectCount; i++) {
|
H A D | pkcs11-list.c | 75 CK_ULONG ulObjectCount; local 175 ulObjectCount = 1; 176 while (ulObjectCount) { 177 rv = pkcs_C_FindObjects(hSession, akey, 50, &ulObjectCount); 185 for (i = 0; i < ulObjectCount; i++) {
|
H A D | pkcs11-keygen.c | 291 CK_ULONG ulObjectCount; local 593 rv = pkcs_C_FindObjects(hSession, &privatekey, 1, &ulObjectCount); 599 if (ulObjectCount != 0) {
|
Completed in 13 milliseconds