Overview
| Comment: | Updated to set SIGN_RECOVER attribute in all objects |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
af6a31403e0e786df0223fa1cecedd3e |
| User & Date: | rkeene on 2010-05-19 22:14:53 |
| Other Links: | manifest | tags |
Context
|
2010-05-20
| ||
| 17:58 | Fixed issue with signing wrong data check-in: d76d28b9e9 user: rkeene tags: trunk | |
|
2010-05-19
| ||
| 22:14 | Updated to set SIGN_RECOVER attribute in all objects check-in: af6a31403e user: rkeene tags: trunk | |
|
2010-05-18
| ||
| 15:35 | Moved PC/SC calls within big global lock check-in: 468216a439 user: rkeene tags: trunk | |
Changes
Modified cackey.c from [47f51881b0] to [24493cef2c].
| ︙ | |||
2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 | 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 | + + + + + + + + + |
if (objectclass == CKO_PRIVATE_KEY) {
pValue = &ck_true;
ulValueLen = sizeof(ck_true);
} else {
pValue = &ck_false;
ulValueLen = sizeof(ck_false);
}
CACKEY_DEBUG_PRINTF(" ... returning %lu (%p/%lu)", (unsigned long) *((CK_BBOOL *) pValue), pValue, (unsigned long) ulValueLen);
break;
case CKA_SIGN_RECOVER:
CACKEY_DEBUG_PRINTF("Requesting attribute CKA_SIGN_RECOVER (0x%08lx) ...", (unsigned long) curr_attr_type);
pValue = &ck_false;
ulValueLen = sizeof(ck_false);
CACKEY_DEBUG_PRINTF(" ... returning %lu (%p/%lu)", (unsigned long) *((CK_BBOOL *) pValue), pValue, (unsigned long) ulValueLen);
break;
case CKA_DECRYPT:
CACKEY_DEBUG_PRINTF("Requesting attribute CKA_DECRYPT (0x%08lx) ...", (unsigned long) curr_attr_type);
|
| ︙ |